Skip to content

Commit

Permalink
Merge pull request #240 from virtualidentityag/develop
Browse files Browse the repository at this point in the history
Update Staging
  • Loading branch information
koepferd authored Jun 14, 2024
2 parents ed82390 + 3c58a02 commit 24a78f4
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ import {
UserDataContext
} from '../../globalState';
import { STATUS_EMPTY } from '../../globalState/interfaces';
import { Link } from 'react-router-dom';

export const E2EEncryptionSupportBanner = () => {
const [showBanner, setShowBanner] = useState<boolean>(false);
Expand Down Expand Up @@ -74,7 +75,12 @@ export const E2EEncryptionSupportBanner = () => {
fill="black"
/>
</svg>
<p>{translate('help.videoCall.banner.content')} </p>
<p>
{translate('help.videoCall.banner.content')}{' '}
<Link to="/profile/hilfe/videoCall">
{translate('help.videoCall.banner.more')}
</Link>
</p>
</Banner>
);
};
4 changes: 3 additions & 1 deletion src/components/termsandconditions/TermsAndConditions.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,9 @@ export const TermsAndConditions = () => {
mainText: transformText2DataPrivacyLink(
translate('termsAndConditionOverlay.contentLine1.privacy')
),
checkboxText: null,
checkboxText: translate(
'termsAndConditionOverlay.contentLine2.privacy'
),
showOverlay: true,
userConfirmed: viewState.userConfirmed,
buttons: dataPrivacyButtons
Expand Down
3 changes: 2 additions & 1 deletion src/resources/i18n/de/common.json
Original file line number Diff line number Diff line change
Expand Up @@ -2189,7 +2189,8 @@
},
"contentLine2": {
"termsAndCondition": "Ich habe die Nutzungsbedingungen zur Kenntnis genommen.\n Damit erkläre ich mich einverstanden.",
"termsAndConditionAndPrivacy": "Ich habe die Nutzungsbedingungen und Datenschutzerklärung\n zur Kenntnis genommen. Damit erkläre ich mich einverstanden."
"termsAndConditionAndPrivacy": "Ich habe die Nutzungsbedingungen und Datenschutzerklärung\n zur Kenntnis genommen. Damit erkläre ich mich einverstanden.",
"privacy": "Ich habe die Datenschutzerklärung zur Kenntnis genommen.\n Damit erkläre ich mich einverstanden."
},
"labels": {
"here": "hier",
Expand Down
3 changes: 2 additions & 1 deletion src/resources/i18n/en/common.json
Original file line number Diff line number Diff line change
Expand Up @@ -2170,7 +2170,8 @@
},
"contentLine2": {
"termsAndCondition": "I have read the Terms of Use.\n I agree to this.",
"termsAndConditionAndPrivacy": "I have read the Terms of Use and Privacy Policy.\n I agree to this."
"termsAndConditionAndPrivacy": "I have read the Terms of Use and Privacy Policy.\n I agree to this.",
"privacy": "I have read the Privacy Policy.\n I agree to this."
},
"labels": {
"here": "here",
Expand Down

0 comments on commit 24a78f4

Please sign in to comment.