-
Notifications
You must be signed in to change notification settings - Fork 64
/
Copy pathtools.en.html
143 lines (122 loc) · 7.59 KB
/
tools.en.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
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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Internationalization tools</title>
<meta name="description" content="Various tools related to internationalization that may be helpful.">
<script>
var f = { }
// AUTHORS should fill in these assignments:
f.directory = ''+'/'; // the path to this file, not including /International or the file name
f.filename = 'tools'; // the file name WITHOUT extensions
f.authors = 'Richard Ishida, W3C'; // author(s) and affiliations
f.previousauthors = ''; // as above
f.modifiers = ''; // people making substantive changes, and their affiliation
f.searchString = 'level2-tools'; // blog search string - usually the filename without extensions
f.firstPubDate = '2006-03-12'; // date of the first publication of the document (after review)
f.lastSubstUpdate = { date:'2016-05-06', time:'12:05'} // date and time of latest substantive changes to this document
f.status = 'notreviewed'; // should be one of draft, review, published, notreviewed or obsolete
f.path = '' // what you need to prepend to a URL to get to the /International directory
// AUTHORS AND TRANSLATORS should fill in these assignments:
f.thisVersion = { date:'2024-06-21', time:'12:05'} // date and time of latest edits to this document/translation
f.contributors = 'Fuqiao Xue, W3C'; // people providing useful contributions or feedback during review or at other times
// also make sure that the lang attribute on the html tag is correct!
// TRANSLATORS should fill in these assignments:
f.translators = 'xxxNAME, ORG'; // translator(s) and their affiliation - a elements allowed, but use double quotes for attributes
f.breadcrumb = '';
f.additionalLinks = ''
</script>
<script src="tools-data/translations.js"> </script>
<script src="../javascript/doc-structure/article-dt.js"> </script>
<script src="../javascript/boilerplate-text/boilerplate-en.js"></script><!--TRANSLATORS must change -en to the subtag for their language!-->
<script src="../javascript/doc-structure/sitepage-2022.js"> </script>
<script src="../javascript/articletoc-2022.js"></script>
<link rel="stylesheet" href="../style/sitepage-2022.css">
<link rel="copyright" href="#copyright">
<style>
.content ul a { font-size: 140%; }
</style>
</head>
<body>
<header>
<nav id="mainNavigation"></nav><script>document.getElementById('mainNavigation').innerHTML = mainNavigation</script>
</header>
<div class="content">
<h1>Internationalization tools</h1>
<section>
<p>This page lists various tools related to internationalization that may be helpful. They are not maintained or owned by the W3C, and the links are provided with no guarrantees.</p>
</section>
<section id="fonts">
<h2><a href="#fonts">Fonts</a></h2>
<ul>
<li>
<p><a href="https://r12a.github.io/scripts/fontlist/index.html">Font lister</a><br>
Browser-based app. Provides a (not exhaustive) list of fonts, grouped by script, that are available via the Windows and macOS operating systems, as well as Google's Noto fonts and SIL fonts. Note that some of the Windows and macOS fonts have to be downloaded by the user before they can be applied to text.</p></li>
</ul>
</section>
<section id="characters">
<h2><a href="#characters">Characters & encoding</a></h2>
<ul>
<li>
<p><a href="https://r12a.github.io/app-conversion/">Unicode code converter</a><br>
Browser-based app. Converts between characters, Unicode code point numbers, UTF-8 and UTF-16 code units in hex, Numeric Character References (hex and decimal), percent-encoded text, and other character escape formats.</p></li>
<li>
<p><a href="https://r12a.github.io/uniview/">UniView</a><br>
Browser-based app.
UniView is a Unicode character viewer/picker that displays characters from a selected range or search pattern, provides information about them, and allows you to assemble strings from them like in a character map. You can also create customizable lists of characters for pasting into documents. UniView supports the latest version of the Unicode Standard, including the supplementary planes as well as the BMP. Characters are displayed as graphics by default, but you can also display them using an installed font.</p>
</li>
<li>
<p><a href="https://r12a.github.io/app-analysestring/index.html">Analyse string tool</a><br>
Browser-based app.
Lists the characters in text that you paste into the large box at the top, and produces information about each character.
</p>
</li>
<li>
<p><a href="https://r12a.github.io/app-encodings/">Encoding converter</a><br>
Browser-based app. Allows you to see how Unicode characters are represented by bytes in various legacy encodings, and vice versa. You can customise the encodings. The algorithms used are based on those described in the Encoding specification, and thus describe the behaviour you can expect from web browsers.</p>
</li>
<li>
<p><a href="https://r12a.github.io/app-listcharacters/">List characters tool</a><br>
Browser-based app. Analyses the characters in text that you paste into the large box at the top, and produces a list of what characters were used, grouped by Unicode block.</p>
</li>
</ul>
</section>
<section id="language">
<h2><a href="#language">Language tags</a></h2>
<ul>
<li>
<p><a href="https://r12a.github.io/app-subtags/">IANA Language Subtag Registry search tool</a><br>
Browser-based app. Look for subtags by searching on the descriptions in the registry. Look up subtags and sequences of subtags. List the various types of
tag currently available. Runs on the most up-to-date version of the registry.</p>
</li>
</ul>
</section>
<section id="segmentation">
<h2><a href="#segmentation">Grapheme segmentation</a></h2>
<ul>
<li>
<p><a href="https://r12a.github.io/scripts/apps/graphemes/index.html">Grapheme segmenter</a><br>
Browser-based app. Parses a string and shows extended grapheme cluster boundaries.</p></li>
</ul>
</section>
<section id="other">
<h2><a href="#other">Other</a></h2>
<ul>
<li>
<p><a href="https://validator.w3.org/i18n-checker/">W3C Internationalization Checker</a><br>
Performs various tests on a Web Page to determine its level of internationalisation-friendliness. It also lists key internationalization settings related to character encoding, language declarations, text direction and class/id names. This information includes HTTP headers, which can be particularly useful for troubleshooting problems. </p>
</li>
<li>
<p><a href="https://r12a.github.io/app-counters/">Counter styles converter</a><br>
Browser-based app. Allows you to convert ASCII numbers into other representations that can be used to create counters for ordered lists, headings, figures, etc. It uses the algorithms described by CSS3 Counter Styles and Predefined Counter Styles. </p>
</li>
<li>
<p><a href="https://r12a.github.io/pickers/">Unicode character pickers</a><br>
Browser-based app. The pickers allow you to produce, analyse and manipulate runs of text for a given language or script. The pickers support well over 100 orthographies in over 90 different scripts. They are particularly useful for people not familiar with a script, but the optimisations, conversion tools, etc, can also be helpful to more experienced users. </p>
</li></ul></section>
</div>
<br style="clear: both;">
<footer id="thefooter"></footer><script>document.getElementById('thefooter').innerHTML = g.bottomOfPage</script>
<script>completePage()</script>
</body>
</html>