-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
38 lines (33 loc) · 1.39 KB
/
index.html
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
<html lang="en">
<head>
<title>English-Malayalam Machine translation</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link id="theme-style" rel="stylesheet" href="css/style.css">
<script src="js/main.js"></script>
</head>
<body>
<header>
<h1>English-Malayalam Machine translation</h1>
</header>
<main class="container">
<progress id="progress"></progress>
<section class="source-container ">
<h2 class="lang-title lang-en" lang="en">English</h2>
<textarea lang="en" id="en_content"></textarea>
</section>
<section class="actions ">
<button class=" " onclick="doTranslate('en', 'ml')">➤</button>
<button class=" " onclick="doTranslate('ml','en')">⮜</button>
</section>
<section class="target-container ">
<h2 class="lang-title lang-ml" lang="ml" >മലയാളം</h2>
<textarea lang="ml" id="ml_content"></textarea>
</section>
</main>
<footer>
<p>Powered by <a href="https://translate.wmcloud.org">MinT machine translation system</a> by Wikimedia Foundation</p>
</footer>
</body>
</html>