-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patheditor.html
More file actions
34 lines (33 loc) · 1.7 KB
/
editor.html
File metadata and controls
34 lines (33 loc) · 1.7 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<title>Online ICU Message Editor</title>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<link rel="stylesheet" href="./css/normalize.css"/>
<link rel="stylesheet" href="./css/skeleton.css"/>
<link rel="stylesheet" href="./css/editor.css"/>
</head>
<body>
<main class="container">
<h1 class="editor-title">Online ICU Message Editor</h1>
<p>
Paste or type in the original message, then translate the text in black.
Special symbols appear in gray, and placeholder names, types, styles, and
selectors appear in blue. Only translate the black text.
<a href="./index.html">Learn more about ICU messages</a>
</p>
<div id="editor"></div>
</main>
<footer class="container">
This page made with ❤️ by
<a href="https://andy.vanwago.net">Andy VanWagoner</a> on
<a href="https://github.com/format-message/icu-message-format-for-translators">GitHub</a>.
<br/> Thanks to <a href="http://site.icu-project.org">ICU</a> for awesome i18n.
</footer>
<aside>
<a href="https://github.com/format-message/icu-message-format-for-translators"><img style="position: absolute; top: 0; right: 0; border: 0;" src="https://camo.githubusercontent.com/e7bbb0521b397edbd5fe43e7f760759336b5e05f/68747470733a2f2f73332e616d617a6f6e6177732e636f6d2f6769746875622f726962626f6e732f666f726b6d655f72696768745f677265656e5f3030373230302e706e67" alt="Fork me on GitHub" data-canonical-src="https://s3.amazonaws.com/github/ribbons/forkme_right_green_007200.png"></a>
</aside>
<script src="https://cdn.polyfill.io/v2/polyfill.min.js?features=Intl.~locale.en"></script>
<script src="editor.js"></script>
</body>