forked from rmraya/TMXEditor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfileInfo.html
85 lines (77 loc) · 2.67 KB
/
fileInfo.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>File Properties</title>
<link id="theme" rel="stylesheet" type="text/css" href="../css/light.css">
<link rel="stylesheet" type="text/css" href="../css/fonts.css">
</head>
<body class="lighter" onload="new FileInfo();">
<div class="tabHolder">
<div class="tab selectedTab" id="atributesTab">
<a id="showAttributes" class="button">TMX Attributes</a>
</div>
<div class="tab " id="propertiesTab">
<a id="showProperties" class="button">Properties</a>
</div>
<div class="tab " id="notesTab">
<a id="showNotes" class="button">Notes</a>
</div>
</div>
<div>
<div id="attributes" class="tabContent">
<div class="paddedPanel" style="height: 300px;">
<table class="stripes">
<tr>
<td>Creation Tool</td>
<td id="creationtool"></td>
</tr>
<tr>
<td>Creation Tool Version</td>
<td id="creationtoolversion"></td>
</tr>
<tr>
<td>Segmentation Type</td>
<td id="segtype"></td>
</tr>
<tr>
<td>Original Translation Memory Format</td>
<td id="o-tmf"></td>
</tr>
<tr>
<td>Administrative Language</td>
<td id="adminlang"></td>
</tr>
<tr>
<td>Source Language</td>
<td id="srclang"></td>
</tr>
<tr>
<td>Data Type</td>
<td id="datatype"></td>
</tr>
</table>
</div>
</div>
<div id="properties" class="hidden">
<div class="paddedPanel" style="height: 300px; ">
<table id="propertiesTable" class="stripes">
<tr>
<td> </td>
<td> </td>
</tr>
</table>
</div>
</div>
<div id="notes" class="hidden">
<div class="paddedPanel" style="height: 300px; ">
<table id="notesTable" class="stripes">
<tr>
<td> </td>
</tr>
</table>
</div>
</div>
</div>
<script src="../js/fileInfo.js"></script>
</body>
</html>