This repository has been archived by the owner on Mar 9, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
122 lines (122 loc) · 3.02 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
{
"name": "atom-i18n",
"main": "./lib/main",
"version": "0.13.0",
"scripts": {
"test": "npm run lint && npm run validation",
"lint": "eslint def lib spec && coffeelint def lib spec",
"validation": "mocha 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": "^4.0.0"
},
"devDependencies": {
"axios": "^0.16.2",
"chai": "^4.1.1",
"coffeelint": "^1.16.0",
"eslint": "^4.5.0",
"greenkeeper-lockfile": "^1.12.0",
"mocha": "^3.5.0",
"yargs": "^8.0.2"
},
"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": "de",
"description": "Deutsch (de)"
},
{
"value": "es",
"description": "Español (es)"
},
{
"value": "fr",
"description": "Français (fr)"
},
{
"value": "hi",
"description": "हिन्दी (hi)"
},
{
"value": "hu",
"description": "Magyar (hu)"
},
{
"value": "it",
"description": "Italiano (it)"
},
{
"value": "ja",
"description": "日本語 (ja)"
},
{
"value": "ko",
"description": "한국어 (ko)"
},
{
"value": "nl",
"description": "Nederlands (nl)"
},
{
"value": "pl",
"description": "Polski (pl)"
},
{
"value": "pt-br",
"description": "Português(Brazil) (pt-br)"
},
{
"value": "ru",
"description": "Ру́сский (ru)"
},
{
"value": "th",
"description": "ภาษาไทย (th)"
},
{
"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>"
}
}
}