-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
122 lines (108 loc) · 3.62 KB
/
index.html
File metadata and controls
122 lines (108 loc) · 3.62 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
121
122
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Arabic–German Legal Dataset v1 | Digital Store</title>
<style>
body {
font-family: Arial, sans-serif;
background: #f5f5f5;
margin: 0;
padding: 0;
}
.container {
max-width: 900px;
margin: 40px auto;
background: white;
padding: 40px;
border-radius: 12px;
box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.banner {
background: linear-gradient(135deg, #004aad, #007bff);
color: white;
padding: 30px;
border-radius: 10px;
text-align: center;
margin-bottom: 30px;
}
.banner h1 {
margin: 0;
font-size: 32px;
}
.banner p {
margin: 10px 0 0;
font-size: 18px;
opacity: 0.9;
}
.email-box {
background: #eef7ff;
padding: 15px;
border-left: 4px solid #007bff;
margin: 20px 0;
border-radius: 6px;
}
.email {
font-size: 20px;
font-weight: bold;
color: #007bff;
}
.sample-box {
background: #fafafa;
padding: 20px;
border-radius: 8px;
border: 1px solid #ddd;
margin-bottom: 20px;
}
.sample-box p {
margin: 5px 0;
font-family: "Courier New", monospace;
}
</style>
</head>
<body>
<div class="container">
<div class="banner">
<h1>Arabic–German Legal Dataset v1</h1>
<p>High‑Quality Parallel Corpus for AI, NLP, and Machine Translation</p>
</div>
<h3>How to Purchase</h3>
<p>
To purchase the dataset, please contact the seller directly via email.
You will receive the payment address (USDT) and instructions.
</p>
<div class="email-box">
Contact Email:<br>
<span class="email">albsyrthsyn@gmail.com</span>
</div>
<h3>Sample Sentences</h3>
<div class="sample-box">
<p><strong>DE:</strong> Die zuständige Behörde hat den Antrag geprüft und genehmigt.</p>
<p><strong>AR:</strong> قامت الجهة المختصة بمراجعة الطلب والموافقة عليه.</p>
</div>
<div class="sample-box">
<p><strong>DE:</strong> Der Vertrag tritt am ersten Tag des folgenden Monats in Kraft.</p>
<p><strong>AR:</strong> يدخل العقد حيز التنفيذ في اليوم الأول من الشهر التالي.</p>
</div>
<div class="sample-box">
<p><strong>DE:</strong> Der Beschuldigte hat das Recht, einen Anwalt zu konsultieren.</p>
<p><strong>AR:</strong> يحق للمتهم استشارة محامٍ.</p>
</div>
<h3>What’s Inside?</h3>
<ul>
<li>Arabic–German parallel sentences</li>
<li>Legal, governmental, and administrative terminology</li>
<li>Cleaned and standardized formatting</li>
<li>AI‑ready structure for MT, LLMs, and NLP models</li>
</ul>
<h3>Use Cases</h3>
<ul>
<li>Machine Translation (MT)</li>
<li>LLM fine‑tuning</li>
<li>Legal text classification</li>
<li>NER and multilingual legal assistants</li>
</ul>
</div>
</body>
</html>