textbrowser 0.48.2 → 0.49.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.
@@ -2,7 +2,7 @@
2
2
  * @file Note that this should be kept as a polyglot client-server file
3
3
  * (besides the server, it is to be invoked by the project service worker).
4
4
  */
5
- /* eslint-env worker */
5
+ /* eslint-env worker -- Worker environment */
6
6
 
7
7
  const {ceil} = Math;
8
8
  const arrayChunk = (arr, size) => {
@@ -0,0 +1,9 @@
1
+ html, body {
2
+ height: 100%;
3
+ }
4
+ .focus {
5
+ text-align: center;
6
+ }
7
+ input[type="number"] {
8
+ width: 70px;
9
+ }
@@ -0,0 +1,67 @@
1
+ {
2
+ "localeFileBasePath": "node_modules/textbrowser/locales/",
3
+ "localization-strings": {
4
+ "en-US": {
5
+ "chooselanguage": "Your interface language",
6
+ "all-langs": "All languages",
7
+ "languages": {
8
+ "en-US": "English",
9
+ "ar": "Arabic",
10
+ "fa": "Persian",
11
+ "ru": "Russian"
12
+ }
13
+ },
14
+ "fa": {
15
+ "chooselanguage": "زبان انتخاب شده",
16
+ "all-langs": "All languages",
17
+ "languages": {
18
+ "en-US": "English",
19
+ "ar": "Arabic",
20
+ "fa": "فارسي",
21
+ "ru": "Russian"
22
+ }
23
+ },
24
+ "ar": {
25
+ "chooselanguage": "لغتك",
26
+ "all-langs": "All languages",
27
+ "languages": {
28
+ "en-US": "English",
29
+ "ar": "عربي",
30
+ "fa": "Persian",
31
+ "ru": "Russian"
32
+ }
33
+ },
34
+ "ru": {
35
+ "chooselanguage": "Your interface language",
36
+ "all-langs": "Все языки",
37
+ "languages": {
38
+ "en-US": "Английский",
39
+ "ar": "Arabic",
40
+ "fa": "Persian",
41
+ "ru": "русский"
42
+ }
43
+ }
44
+ },
45
+ "languages": [
46
+ {
47
+ "code": "en-US",
48
+ "direction": "ltr",
49
+ "locale": {"$ref": "../locales/en-US.json"}
50
+ },
51
+ {
52
+ "code": "fa",
53
+ "direction": "rtl",
54
+ "locale": {"$ref": "../locales/fa.json"}
55
+ },
56
+ {
57
+ "code": "ar",
58
+ "direction": "rtl",
59
+ "locale": {"$ref": "../locales/ar.json"}
60
+ },
61
+ {
62
+ "code": "ru",
63
+ "direction": "ltr",
64
+ "locale": {"$ref": "../locales/ru.json"}
65
+ }
66
+ ]
67
+ }