瀏覽代碼

[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
 import { styles } from './styles';
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
  * The native container rendering the welcome page.
18
  * The native container rendering the welcome page.
83
                 <View style = { styles.legaleseContainer }>
78
                 <View style = { styles.legaleseContainer }>
84
                     <Link
79
                     <Link
85
                         style = { styles.legaleseItem }
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
                     </Link>
83
                     </Link>
94
                 </View>
84
                 </View>
95
             </View>
85
             </View>

Loading…
取消
儲存