-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathresult.html
71 lines (71 loc) · 1.95 KB
/
result.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>javascript internationalisation framwork compare</title>
</head>
<body>
<table border="1">
<tr>
<th>Framework</th>
<th>License</th>
<th>Bytes js code</th>
<th>Bytes dependeny js code</th>
<th>plural</th>
<th>placeholder</th>
<th>load on demand</th>
<th>auto detect</th>
<th>switch language</th>
<th>method</th>
</tr>
<tr>
<td><!--Framework--><a href="http://eligrey.com/blog/post/passive-localization-in-javascript">l10n.js</a></td>
<td><!--License-->MIT/X11 license</td>
<td><!--Bytes js code-->2145</td>
<td><!--Bytes dependeny js code-->3353</td>
<td><!--plural-->no</td>
<td><!--placeholder-->no</td>
<td><!--load on demand-->yes</td>
<td><!--auto detect-->yes</td>
<td><!--switch language-->for changed</td>
<td><!--translation method-->both,proerties prefered</td>
</tr>
<tr>
<td><!--Framework--><a href="http://i18next.com/">i18next.js</a></td>
<td><!--License-->MIT license</td>
<td><!--Bytes js code-->26916</td>
<td><!--Bytes dependeny js code-->0</td>
<td><!--plural-->yes</td>
<td><!--placeholder-->yes</td>
<td><!--load on demand-->yes</td>
<td><!--auto detect-->yes</td>
<td><!--switch language-->for changed</td>
<td><!--translation method-->properties</td>
</tr>
<tr>
<td><!--Framework--><a href="https://github.com/jpjoyal/jsperanto">jsperanto</a></td>
<td><!--License-->MIT License</td>
<td><!--Bytes js code-->5992</td>
<td><!--Bytes dependeny js code-->72174</td>
<td><!--plural-->yes</td>
<td><!--placeholder-->yes</td>
<td><!--load on demand-->yes</td>
<td><!--auto detect-->yes</td>
<td><!--switch language-->for changed</td>
<td><!--translation method-->properties</td>
</tr>
<tr>
<td><!--Framework--></td>
<td><!--License--></td>
<td><!--Bytes js code--></td>
<td><!--Bytes dependeny js code--></td>
<td><!--plural--></td>
<td><!--placeholder--></td>
<td><!--load on demand--></td>
<td><!--auto detect--></td>
<td><!--switch language--></td>
<td><!--translation method--></td>
</tr>
</table>
</body>
</html>