-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathterms.html
More file actions
115 lines (104 loc) · 4.63 KB
/
terms.html
File metadata and controls
115 lines (104 loc) · 4.63 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Terms of Service - Discord Translator</title>
<style>
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
line-height: 1.6;
max-width: 800px;
margin: 0 auto;
padding: 20px;
background: #f5f5f5;
color: #333;
}
.container {
background: white;
padding: 40px;
border-radius: 8px;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
h1 {
color: #5865F2;
border-bottom: 3px solid #5865F2;
padding-bottom: 10px;
}
h2 {
color: #4752C4;
margin-top: 30px;
}
.highlight {
background: #fef3cd;
padding: 15px;
border-left: 4px solid #f0b429;
margin: 20px 0;
}
ul {
margin: 10px 0;
}
li {
margin: 8px 0;
}
.footer {
margin-top: 40px;
padding-top: 20px;
border-top: 1px solid #ddd;
color: #666;
font-size: 14px;
}
</style>
</head>
<body>
<div class="container">
<h1>📜 Terms of Service</h1>
<p>These Terms of Service ("Terms") govern your use of the <strong>Discord Translator</strong> bot and related services (the "Service"). By using the Service, you agree to these Terms. If you do not agree, you must not use the Service.</p>
<h2>📖 Description of the Service</h2>
<p>The Service is a Discord bot that provides <strong>automated language translation</strong> of user-submitted messages using third-party AI services.</p>
<p>Translations are generated automatically and may not always be accurate or appropriate.</p>
<h2>✅ Eligibility & Acceptance</h2>
<ul>
<li>You are allowed to use Discord under Discord's Terms of Service</li>
<li>You understand that translations are generated by AI</li>
<li>You agree to these Terms and the Privacy Policy</li>
</ul>
<p>Use of the Service constitutes acceptance of these Terms.</p>
<h2>🧠 AI & Accuracy Disclaimer</h2>
<ul>
<li>Translations are generated automatically using AI</li>
<li>Translations may be inaccurate, incomplete, or misleading</li>
<li>The Service is provided "as is" with no guarantees of correctness</li>
</ul>
<p>You are solely responsible for how you use translated content.</p>
<h2>🚫 Acceptable Use</h2>
<p>You agree not to use the Service to:</p>
<ul>
<li>Translate illegal or unlawful content</li>
<li>Harass, abuse, or harm others</li>
<li>Spam, overload, or disrupt the Service</li>
<li>Exploit, reverse engineer, or bypass safeguards</li>
<li>Violate Discord's Terms or applicable laws</li>
</ul>
<h2>🔐 Data & Privacy</h2>
<p>Your use of the Service is governed by our <strong>Privacy Policy</strong>, which explains what data is collected, how it is used, and how third-party AI services are involved.</p>
<h2>🛑 Service Availability</h2>
<ul>
<li>The Service is provided on an as-available basis</li>
<li>We do not guarantee uptime or availability</li>
<li>Features may change or be removed at any time</li>
</ul>
<h2>⛔ Termination & Restrictions</h2>
<p>We reserve the right to restrict or terminate access to the Service for any reason, including abuse or violation of these Terms, without notice.</p>
<h2>⚖️ Limitation of Liability</h2>
<p>To the maximum extent permitted by law, we are not liable for incorrect translations, data loss, service interruptions, or actions taken based on translated content.</p>
<p>Use of the Service is at your own risk.</p>
<h2>🔄 Changes to These Terms</h2>
<p>These Terms may be updated at any time. Continued use of the Service means you accept the updated Terms.</p>
<div class="footer">
<p><strong>Contact:</strong> For questions about these Terms, contact <a href="mailto:crystal@crystalcoding.org">crystal@crystalcoding.org</a></p>
<p><em>Discord Translator is a service provided by crystalcoding and is not affiliated with Discord or Google.</em></p>
</div>
</div>
</body>
</html>