-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprivacy.html
More file actions
120 lines (112 loc) · 5.23 KB
/
privacy.html
File metadata and controls
120 lines (112 loc) · 5.23 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
116
117
118
119
120
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Privacy Policy - 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>🔒 Privacy Policy & Data Usage</h1>
<div class="highlight">
<strong>⚠️ By using this Discord translation service, you agree to the data collection and storage described below.</strong>
</div>
<h2>📝 What Data We Collect & Store</h2>
<p>When you use our translation service, we automatically collect and store:</p>
<ul>
<li><strong>Discord User ID:</strong> Your unique Discord identifier (numeric ID)</li>
<li><strong>Username:</strong> Your Discord username at the time of translation</li>
<li><strong>Original Messages:</strong> The full text of messages you submit for translation</li>
<li><strong>Message Hashes:</strong> SHA-256 hashes of original messages for efficient caching</li>
<li><strong>Translated Messages:</strong> The complete translated output</li>
<li><strong>Target Languages:</strong> Which languages you request translations into</li>
<li><strong>Detected Languages:</strong> The source language detected by our AI</li>
<li><strong>Timestamps:</strong> When each translation was created and last accessed</li>
<li><strong>Usage Counts:</strong> How many times each cached translation has been reused</li>
</ul>
<h2>🎯 Why We Collect This Data</h2>
<ul>
<li><strong>Performance Caching:</strong> Store frequently translated messages to provide instant responses without re-processing</li>
<li><strong>Cost Optimization:</strong> Reduce API calls to translation services by reusing cached results</li>
<li><strong>User Tracking:</strong> Link translations to users for accountability and usage analytics</li>
</ul>
<h2>🗄️ How Long We Store Data</h2>
<p>Translation data is stored:</p>
<ul>
<li><strong>Indefinitely</strong> for frequently used translations (use_count > 1)</li>
<li><strong>90+ days</strong> for single-use translations (may be periodically cleaned)</li>
<li>User profiles remain until you request deletion</li>
</ul>
<h2>🔗 Data Sharing</h2>
<p>Your data is shared with:</p>
<ul>
<li><strong>Google Gemini API:</strong> Original messages are sent to Google's AI service for translation processing</li>
<li><strong>No other third parties:</strong> We do not sell or share your data with advertisers or other services</li>
</ul>
<h2>🛡️ Your Rights</h2>
<p>You have the right to:</p>
<ul>
<li><strong>Access:</strong> Request information about what data we have stored about you</li>
<li><strong>Deletion:</strong> Request complete deletion of your user profile and translation history</li>
</ul>
<p><em>Note: Due to caching, translations may remain in shared cache but will no longer be linked to your user ID.</em></p>
<h2>⚙️ Database Structure</h2>
<p>Your data is stored in the following tables:</p>
<ul>
<li><strong>discord_user:</strong> Your Discord ID and username</li>
<li><strong>translation_history:</strong> All translation messages and metadata</li>
<li><strong>history:</strong> Links between your user ID and your translations</li>
</ul>
<div class="footer">
<p><strong>Last Updated:</strong> December 18, 2025</p>
<p><strong>Contact:</strong> If you have questions or wish to exercise your data rights (accessing or deleting data), please contact the administrator at <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>