소스 검색

[RN] Change 'Privacy Policty' and 'Terms of Service' to 'Terms and Conditions'

master
Lyubomir Marinov 9 년 전
부모
커밋
96a18ab2d5
1개의 변경된 파일5개의 추가작업 그리고 15개의 파일을 삭제
  1. 5
    15
      react/features/welcome/components/WelcomePage.native.js

+ 5
- 15
react/features/welcome/components/WelcomePage.native.js 파일 보기

@@ -9,15 +9,10 @@ import { AbstractWelcomePage, mapStateToProps } from './AbstractWelcomePage';
9 9
 import { styles } from './styles';
10 10
 
11 11
 /**
12
- * The URL at which the privacy policy is available to the user.
12
+ * The URL at which the terms and conditions (of service) are available to the
13
+ * user.
13 14
  */
14
-const PRIVACY_POLICY_URL = 'https://www.atlassian.com/legal/privacy-policy';
15
-
16
-/**
17
- * The URL at which the terms of service are available to the user.
18
- */
19
-const TERMS_OF_SERVICE_URL
20
-    = 'https://www.atlassian.com/legal/customer-agreement';
15
+const TERMS_AND_CONDITIONS_URL = 'https://jitsi.org/meet/terms';
21 16
 
22 17
 /**
23 18
  * The native container rendering the welcome page.
@@ -83,13 +78,8 @@ class WelcomePage extends AbstractWelcomePage {
83 78
                 <View style = { styles.legaleseContainer }>
84 79
                     <Link
85 80
                         style = { styles.legaleseItem }
86
-                        url = { PRIVACY_POLICY_URL }>
87
-                        Privacy Policy
88
-                    </Link>
89
-                    <Link
90
-                        style = { styles.legaleseItem }
91
-                        url = { TERMS_OF_SERVICE_URL }>
92
-                        Terms of Service
81
+                        url = { TERMS_AND_CONDITIONS_URL }>
82
+                        Terms and Conditions
93 83
                     </Link>
94 84
                 </View>
95 85
             </View>

Loading…
취소
저장