-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathhide.html
More file actions
129 lines (128 loc) · 5.12 KB
/
hide.html
File metadata and controls
129 lines (128 loc) · 5.12 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
123
124
125
126
127
128
129
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Ссылка удалена</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f8f8f8;
color: #333;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
height: 100vh;
margin: 0;
}
.language-buttons {
display: flex;
justify-content: center;
gap: 10px;
flex-wrap: wrap;
margin-top: 20px;
margin-bottom: 20px;
}
.language-buttons button {
padding: 5px 7px;
font-size: 10px;
border: 1px solid #ddd;
background-color: #f0f0f0;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s, border-color 0.3s;
}
.language-buttons button:hover {
background-color: #e0e0e0;
border-color: #ccc;
}
.language-buttons button:active {
background-color: #d0d0d0;
border-color: #bbb;
}
.container {
text-align: center;
padding: 20px;
background-color: #fff;
border: 1px solid #ddd;
border-radius: 8px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
h1 {
font-size: 24px;
margin-bottom: 10px;
}
p {
font-size: 16px;
margin-bottom: 20px;
}
</style>
<script>
function changeLanguage(languageCode) {
const languages = {
"ru": {
"title": "Ссылка удалена",
"message": "Ссылка на скачивание была убрана по просьбе правообладателя."
},
"en": {
"title": "Link Removed",
"message": "The download link has been removed at the request of the copyright holder."
},
"zh": {
"title": "链接已删除",
"message": "应版权持有者的要求,下载链接已被删除。"
},
"hi": {
"title": "लिंक हटा दिया गया",
"message": "कॉपीराइट धारक के अनुरोध पर डाउनलोड लिंक हटा दिया गया है।"
},
"es": {
"title": "Enlace eliminado",
"message": "El enlace de descarga ha sido eliminado a petición del titular de los derechos de autor."
},
"fr": {
"title": "Lien supprimé",
"message": "Le lien de téléchargement a été supprimé à la demande du titulaire des droits d'auteur."
},
"ar": {
"title": "تمت إزالة الرابط",
"message": "تمت إزالة رابط التحميل بناءً على طلب صاحب حقوق الطبع والنشر."
},
"bn": {
"title": "লিংক সরানো হয়েছে",
"message": "কপিরাইট ধারকের অনুরোধে ডাউনলোড লিঙ্কটি সরানো হয়েছে।"
},
"pt": {
"title": "Link Removido",
"message": "O link de download foi removido a pedido do titular dos direitos autorais."
},
"id": {
"title": "Tautan Dihapus",
"message": "Tautan unduhan telah dihapus atas permintaan pemegang hak cipta."
}
};
document.getElementById("title").textContent = languages[languageCode].title;
document.getElementById("message").textContent = languages[languageCode].message;
}
</script>
</head>
<body>
<div class="container">
<h1 id="title">Ссылка удалена</h1>
<p id="message">Ссылка на скачивание была убрана по просьбе правообладателя.</p>
</div>
<div class="language-buttons">
<button onclick="changeLanguage('ru')">RU</button>
<button onclick="changeLanguage('en')">EN</button>
<button onclick="changeLanguage('zh')">ZH</button>
<button onclick="changeLanguage('hi')">HI</button>
<button onclick="changeLanguage('es')">ES</button>
<button onclick="changeLanguage('fr')">FR</button>
<button onclick="changeLanguage('ar')">AR</button>
<button onclick="changeLanguage('bn')">BN</button>
<button onclick="changeLanguage('pt')">PT</button>
<button onclick="changeLanguage('id')">ID</button>
</div>
</body>
</html>