@l10nmonster/server 3.0.0-alpha.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +101 -0
- package/index.js +69 -0
- package/mockData.js +67 -0
- package/package.json +55 -0
- package/ui/dist/assets/index-CIfVvUo9.css +1 -0
- package/ui/dist/assets/index-DexglpRr.js +253 -0
- package/ui/dist/favicon.ico +0 -0
- package/ui/dist/index.html +21 -0
- package/ui/dist/logo192.png +0 -0
- package/ui/dist/logo512.png +0 -0
- package/ui/dist/manifest.json +25 -0
- package/ui/dist/robots.txt +3 -0
|
Binary file
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="utf-8" />
|
|
5
|
+
<link rel="icon" href="/favicon.ico" />
|
|
6
|
+
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
7
|
+
<meta name="theme-color" content="#000000" />
|
|
8
|
+
<meta
|
|
9
|
+
name="description"
|
|
10
|
+
content="L10n Monster - Translation Management"
|
|
11
|
+
/>
|
|
12
|
+
<link rel="manifest" href="/manifest.json" />
|
|
13
|
+
<title>L10n Monster</title>
|
|
14
|
+
<script type="module" crossorigin src="/assets/index-DexglpRr.js"></script>
|
|
15
|
+
<link rel="stylesheet" crossorigin href="/assets/index-CIfVvUo9.css">
|
|
16
|
+
</head>
|
|
17
|
+
<body>
|
|
18
|
+
<noscript>You need to enable JavaScript to run this app.</noscript>
|
|
19
|
+
<div id="root"></div>
|
|
20
|
+
</body>
|
|
21
|
+
</html>
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
{
|
|
2
|
+
"short_name": "L10n Monster",
|
|
3
|
+
"name": "L10n Monster Manager",
|
|
4
|
+
"icons": [
|
|
5
|
+
{
|
|
6
|
+
"src": "favicon.ico",
|
|
7
|
+
"sizes": "64x64 32x32 24x24 16x16",
|
|
8
|
+
"type": "image/x-icon"
|
|
9
|
+
},
|
|
10
|
+
{
|
|
11
|
+
"src": "logo192.png",
|
|
12
|
+
"type": "image/png",
|
|
13
|
+
"sizes": "192x192"
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
"src": "logo512.png",
|
|
17
|
+
"type": "image/png",
|
|
18
|
+
"sizes": "512x512"
|
|
19
|
+
}
|
|
20
|
+
],
|
|
21
|
+
"start_url": ".",
|
|
22
|
+
"display": "standalone",
|
|
23
|
+
"theme_color": "#000000",
|
|
24
|
+
"background_color": "#ffffff"
|
|
25
|
+
}
|