forked from liuderchi/atom-i18n
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
181 lines (181 loc) · 4.42 KB
/
package.json
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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
{
"name": "atom-i18n",
"main": "./lib/main",
"version": "0.26.1",
"scripts": {
"prepare": "husky install",
"prettier:write": "prettier --write .",
"lint": "eslint lib spec",
"validation": "mocha --require @babel/register spec/validation.js"
},
"description": "Localize Atom for your locale. One i18n package for any language. Community-driven translation.",
"keywords": [
"atom",
"i18n",
"l10n",
"internationalization",
"localization",
"language",
"translate",
"translation"
],
"repository": "https://github.com/liuderchi/atom-i18n",
"license": "MIT",
"engines": {
"atom": ">=1.16.0 <2.0.0"
},
"dependencies": {
"cson": "^7.20.0"
},
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/preset-env": "^7.15.6",
"@babel/register": "^7.15.3",
"chai": "^4.3.4",
"core-js": "^3.18.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"husky": "^7.0.2",
"isomorphic-fetch": "^3.0.0",
"lint-staged": "^11.1.2",
"mocha": "^9.1.1",
"prettier": "2.4.1",
"regenerator-runtime": "^0.13.9",
"yargs": "^17.1.1"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"configSchema": {
"locale": {
"type": "string",
"default": "template",
"title": "Language",
"description": "Language for internationalization (sorted by <em>locale code</em>).</br>Please <code>Reload Atom</code> after changing locale.",
"enum": [
{
"value": "ar",
"description": "اللغة العربية (ar)"
},
{
"value": "be",
"description": "Беларуская мова (be)"
},
{
"value": "cs",
"description": "Čeština (cs)"
},
{
"value": "de",
"description": "Deutsch (de)"
},
{
"value": "eo",
"description": "Esperanto (eo)"
},
{
"value": "es",
"description": "Español (es)"
},
{
"value": "fa",
"description": "زبان فارسی (fa)"
},
{
"value": "fi",
"description": "suomi (fi)"
},
{
"value": "fr",
"description": "Français (fr)"
},
{
"value": "he",
"description": "עברית (he)"
},
{
"value": "hi",
"description": "हिन्दी (hi)"
},
{
"value": "hu",
"description": "Magyar (hu)"
},
{
"value": "it",
"description": "Italiano (it)"
},
{
"value": "ja",
"description": "日本語 (ja)"
},
{
"value": "kn",
"description": "ಕನ್ನಡ (kn)"
},
{
"value": "ko",
"description": "한국어 (ko)"
},
{
"value": "ms",
"description": "Bahasa Melayu (ms)"
},
{
"value": "nl",
"description": "Nederlands (nl)"
},
{
"value": "pl",
"description": "Polski (pl)"
},
{
"value": "pt-br",
"description": "Português(Brazil) (pt-br)"
},
{
"value": "ro",
"description": "Română (ro)"
},
{
"value": "ru",
"description": "Ру́сский (ru)"
},
{
"value": "sk",
"description": "Slovenčina (sk)"
},
{
"value": "sq",
"description": "Shqipe (sq)"
},
{
"value": "th",
"description": "ภาษาไทย (th)"
},
{
"value": "uk",
"description": "Українська мова (uk)"
},
{
"value": "zh-cn",
"description": "简体中文 (zh-cn)"
},
{
"value": "zh-tw",
"description": "繁體中文 (zh-tw)"
},
{
"value": "template",
"description": "English (en)"
}
]
},
"customMenuI18nPath": {
"type": "string",
"default": "",
"title": "Custom Translation for Menu",
"description": "Translate community package (like <code>Minimap</code>) in menu bar by editing this file.</br> You can open it by command <code>atom-i18n:open-custom-menu-i18n-file</code>"
}
}
}