@kolanut/language-packs 0.1.0

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.
Files changed (74) hide show
  1. package/CONTRIBUTING.md +119 -0
  2. package/LICENSE +17 -0
  3. package/README.md +237 -0
  4. package/badges/coverage.json +6 -0
  5. package/badges/packs.json +6 -0
  6. package/badges/targets.json +6 -0
  7. package/badges/tokens.json +6 -0
  8. package/dist/index.d.ts +2 -0
  9. package/dist/index.js +1 -0
  10. package/dist/load-pack.d.ts +6 -0
  11. package/dist/load-pack.js +31 -0
  12. package/dist/types.d.ts +33 -0
  13. package/dist/types.js +1 -0
  14. package/pack.schema.json +86 -0
  15. package/package.json +61 -0
  16. package/packs/PACK_SCOPE.md +68 -0
  17. package/packs/afrikaans/keywords.json +329 -0
  18. package/packs/afrikaans/pack.json +361 -0
  19. package/packs/amharic/keywords.json +329 -0
  20. package/packs/amharic/pack.json +359 -0
  21. package/packs/arabic/keywords.json +329 -0
  22. package/packs/arabic/pack.json +369 -0
  23. package/packs/bambara/keywords.json +299 -0
  24. package/packs/bambara/pack.json +332 -0
  25. package/packs/by-country.json +183 -0
  26. package/packs/by-region.json +49 -0
  27. package/packs/coverage-summary.json +424 -0
  28. package/packs/french/keywords.json +329 -0
  29. package/packs/french/pack.json +381 -0
  30. package/packs/fulfulde/keywords.json +299 -0
  31. package/packs/fulfulde/pack.json +336 -0
  32. package/packs/hausa/keywords.json +329 -0
  33. package/packs/hausa/pack.json +363 -0
  34. package/packs/igbo/keywords.json +329 -0
  35. package/packs/igbo/pack.json +360 -0
  36. package/packs/index.json +397 -0
  37. package/packs/kinyarwanda/keywords.json +329 -0
  38. package/packs/kinyarwanda/pack.json +359 -0
  39. package/packs/languages-roadmap.json +28 -0
  40. package/packs/lingala/keywords.json +329 -0
  41. package/packs/lingala/pack.json +360 -0
  42. package/packs/logical-tokens.json +120 -0
  43. package/packs/luganda/keywords.json +329 -0
  44. package/packs/luganda/pack.json +359 -0
  45. package/packs/nigerian-pidgin/keywords.json +332 -0
  46. package/packs/nigerian-pidgin/pack.json +362 -0
  47. package/packs/official-target-keywords.json +166 -0
  48. package/packs/oromo/keywords.json +329 -0
  49. package/packs/oromo/pack.json +360 -0
  50. package/packs/portuguese-africa/keywords.json +299 -0
  51. package/packs/portuguese-africa/pack.json +334 -0
  52. package/packs/sesotho/keywords.json +299 -0
  53. package/packs/sesotho/pack.json +330 -0
  54. package/packs/setswana/keywords.json +299 -0
  55. package/packs/setswana/pack.json +331 -0
  56. package/packs/shona/keywords.json +329 -0
  57. package/packs/shona/pack.json +359 -0
  58. package/packs/somali/keywords.json +329 -0
  59. package/packs/somali/pack.json +362 -0
  60. package/packs/swahili/keywords.json +329 -0
  61. package/packs/swahili/pack.json +365 -0
  62. package/packs/target-coverage.json +1083 -0
  63. package/packs/tigrinya/keywords.json +329 -0
  64. package/packs/tigrinya/pack.json +360 -0
  65. package/packs/twi/keywords.json +329 -0
  66. package/packs/twi/pack.json +360 -0
  67. package/packs/wolof/keywords.json +329 -0
  68. package/packs/wolof/pack.json +361 -0
  69. package/packs/xhosa/keywords.json +329 -0
  70. package/packs/xhosa/pack.json +360 -0
  71. package/packs/yoruba/keywords.json +329 -0
  72. package/packs/yoruba/pack.json +363 -0
  73. package/packs/zulu/keywords.json +329 -0
  74. package/packs/zulu/pack.json +360 -0
@@ -0,0 +1,360 @@
1
+ {
2
+ "name": "oromo",
3
+ "languageCode": "om",
4
+ "locale": "om-ET",
5
+ "countries": [
6
+ "ET",
7
+ "KE"
8
+ ],
9
+ "regions": [
10
+ "East Africa"
11
+ ],
12
+ "version": "0.1.0",
13
+ "displayName": "Oromo",
14
+ "description": "Oromo keyword map — starter pack (community contributions welcome)",
15
+ "reviewStatus": "starter",
16
+ "contributors": [
17
+ "kolanutTechnologies"
18
+ ],
19
+ "targets": [
20
+ "javascript",
21
+ "python",
22
+ "typescript",
23
+ "go",
24
+ "rust"
25
+ ],
26
+ "keywords": {
27
+ "IF": [
28
+ "yoo",
29
+ "if"
30
+ ],
31
+ "ELSE": [
32
+ "kana malee",
33
+ "else"
34
+ ],
35
+ "FOR": [
36
+ "waan",
37
+ "for"
38
+ ],
39
+ "WHILE": [
40
+ "yeroo",
41
+ "while"
42
+ ],
43
+ "BREAK": [
44
+ "cabsi",
45
+ "break"
46
+ ],
47
+ "CONTINUE": [
48
+ "itti fufi",
49
+ "continue"
50
+ ],
51
+ "SWITCH": [
52
+ "filadhu",
53
+ "switch"
54
+ ],
55
+ "CASE": [
56
+ "dhimma",
57
+ "case"
58
+ ],
59
+ "DEFAULT": [
60
+ "baramaa",
61
+ "default"
62
+ ],
63
+ "FUNCTION": [
64
+ "hojii",
65
+ "function"
66
+ ],
67
+ "RETURN": [
68
+ "deebisi",
69
+ "return"
70
+ ],
71
+ "ASYNC": [
72
+ "async",
73
+ "async"
74
+ ],
75
+ "AWAIT": [
76
+ "eegi",
77
+ "await"
78
+ ],
79
+ "TRY": [
80
+ "yaali",
81
+ "try"
82
+ ],
83
+ "CATCH": [
84
+ "qabachuu",
85
+ "catch"
86
+ ],
87
+ "FINALLY": [
88
+ "dhumarratti",
89
+ "finally"
90
+ ],
91
+ "THROW": [
92
+ "darbi",
93
+ "throw"
94
+ ],
95
+ "LET": [
96
+ "hayyami",
97
+ "let"
98
+ ],
99
+ "CONST": [
100
+ "dhabbataa",
101
+ "const"
102
+ ],
103
+ "CLASS": [
104
+ "garee",
105
+ "class"
106
+ ],
107
+ "EXTENDS": [
108
+ "dabalata",
109
+ "extends"
110
+ ],
111
+ "NEW": [
112
+ "haaraa",
113
+ "new"
114
+ ],
115
+ "THIS": [
116
+ "kana",
117
+ "this"
118
+ ],
119
+ "IMPORT": [
120
+ "galchi",
121
+ "import"
122
+ ],
123
+ "EXPORT": [
124
+ "ergi",
125
+ "export"
126
+ ],
127
+ "PRINT": [
128
+ "maxxansi",
129
+ "print"
130
+ ],
131
+ "TRUE": [
132
+ "dhugaa",
133
+ "true"
134
+ ],
135
+ "FALSE": [
136
+ "soba",
137
+ "false"
138
+ ],
139
+ "NULL": [
140
+ "homaa",
141
+ "null"
142
+ ],
143
+ "UNDEFINED": [
144
+ "hin ibsamne",
145
+ "undefined"
146
+ ],
147
+ "ELIF": [
148
+ "else"
149
+ ],
150
+ "LOOP": [
151
+ "loop"
152
+ ],
153
+ "MATCH": [
154
+ "match"
155
+ ],
156
+ "GOTO": [
157
+ "goto"
158
+ ],
159
+ "FALLTHROUGH": [
160
+ "fallthrough"
161
+ ],
162
+ "SELECT": [
163
+ "select"
164
+ ],
165
+ "RANGE": [
166
+ "range"
167
+ ],
168
+ "YIELD": [
169
+ "yield"
170
+ ],
171
+ "LAMBDA": [
172
+ "lambda"
173
+ ],
174
+ "DEFER": [
175
+ "defer"
176
+ ],
177
+ "GO": [
178
+ "go"
179
+ ],
180
+ "VAR": [
181
+ "var"
182
+ ],
183
+ "MUT": [
184
+ "mut"
185
+ ],
186
+ "GLOBAL": [
187
+ "global"
188
+ ],
189
+ "NONLOCAL": [
190
+ "nonlocal"
191
+ ],
192
+ "STRUCT": [
193
+ "struct"
194
+ ],
195
+ "TRAIT": [
196
+ "trait"
197
+ ],
198
+ "IMPL": [
199
+ "impl"
200
+ ],
201
+ "INTERFACE": [
202
+ "interface"
203
+ ],
204
+ "ENUM": [
205
+ "enum"
206
+ ],
207
+ "TYPE": [
208
+ "type"
209
+ ],
210
+ "IMPLEMENTS": [
211
+ "implements"
212
+ ],
213
+ "SELF": [
214
+ "self"
215
+ ],
216
+ "SUPER": [
217
+ "super"
218
+ ],
219
+ "STATIC": [
220
+ "static"
221
+ ],
222
+ "FROM": [
223
+ "from"
224
+ ],
225
+ "AS": [
226
+ "as"
227
+ ],
228
+ "MODULE": [
229
+ "module"
230
+ ],
231
+ "NAMESPACE": [
232
+ "namespace"
233
+ ],
234
+ "PACKAGE": [
235
+ "package"
236
+ ],
237
+ "USE": [
238
+ "use"
239
+ ],
240
+ "PUB": [
241
+ "public"
242
+ ],
243
+ "CRATE": [
244
+ "crate"
245
+ ],
246
+ "WITH": [
247
+ "with"
248
+ ],
249
+ "PASS": [
250
+ "pass"
251
+ ],
252
+ "ASSERT": [
253
+ "assert"
254
+ ],
255
+ "ASSERTS": [
256
+ "asserts"
257
+ ],
258
+ "NIL": [
259
+ "null"
260
+ ],
261
+ "UNSAFE": [
262
+ "unsafe"
263
+ ],
264
+ "EXTERN": [
265
+ "declare"
266
+ ],
267
+ "CHAN": [
268
+ "chan"
269
+ ],
270
+ "MAP": [
271
+ "map"
272
+ ],
273
+ "AND": [
274
+ "and"
275
+ ],
276
+ "OR": [
277
+ "or"
278
+ ],
279
+ "NOT": [
280
+ "not"
281
+ ],
282
+ "IN": [
283
+ "in"
284
+ ],
285
+ "IS": [
286
+ "is"
287
+ ],
288
+ "DEL": [
289
+ "del"
290
+ ],
291
+ "DO": [
292
+ "do"
293
+ ],
294
+ "DEBUGGER": [
295
+ "debugger"
296
+ ],
297
+ "TYPEOF": [
298
+ "typeof"
299
+ ],
300
+ "VOID": [
301
+ "void"
302
+ ],
303
+ "INSTANCEOF": [
304
+ "instanceof"
305
+ ],
306
+ "PRIVATE": [
307
+ "private"
308
+ ],
309
+ "PROTECTED": [
310
+ "protected"
311
+ ],
312
+ "PUBLIC": [
313
+ "public"
314
+ ],
315
+ "READONLY": [
316
+ "readonly"
317
+ ],
318
+ "ABSTRACT": [
319
+ "abstract"
320
+ ],
321
+ "DECLARE": [
322
+ "declare"
323
+ ],
324
+ "GET": [
325
+ "get"
326
+ ],
327
+ "SET": [
328
+ "set"
329
+ ],
330
+ "INFER": [
331
+ "infer"
332
+ ],
333
+ "KEYOF": [
334
+ "keyof"
335
+ ],
336
+ "UNIQUE": [
337
+ "unique"
338
+ ],
339
+ "SATISFIES": [
340
+ "satisfies"
341
+ ],
342
+ "DYN": [
343
+ "dyn"
344
+ ],
345
+ "MOVE": [
346
+ "move"
347
+ ],
348
+ "REF": [
349
+ "ref"
350
+ ],
351
+ "WHERE": [
352
+ "where"
353
+ ]
354
+ },
355
+ "scopeNote": "Oromo of Ethiopia and Kenya.",
356
+ "recommendedPartners": [
357
+ "ACALAN",
358
+ "Addis Ababa University"
359
+ ]
360
+ }
@@ -0,0 +1,299 @@
1
+ {
2
+ "IF": [
3
+ "if"
4
+ ],
5
+ "ELSE": [
6
+ "else"
7
+ ],
8
+ "ELIF": [
9
+ "else"
10
+ ],
11
+ "FOR": [
12
+ "for"
13
+ ],
14
+ "WHILE": [
15
+ "while"
16
+ ],
17
+ "LOOP": [
18
+ "loop"
19
+ ],
20
+ "BREAK": [
21
+ "break"
22
+ ],
23
+ "CONTINUE": [
24
+ "continue"
25
+ ],
26
+ "SWITCH": [
27
+ "switch"
28
+ ],
29
+ "MATCH": [
30
+ "match"
31
+ ],
32
+ "CASE": [
33
+ "case"
34
+ ],
35
+ "DEFAULT": [
36
+ "default"
37
+ ],
38
+ "GOTO": [
39
+ "goto"
40
+ ],
41
+ "FALLTHROUGH": [
42
+ "fallthrough"
43
+ ],
44
+ "SELECT": [
45
+ "select"
46
+ ],
47
+ "RANGE": [
48
+ "range"
49
+ ],
50
+ "FUNCTION": [
51
+ "function"
52
+ ],
53
+ "RETURN": [
54
+ "return"
55
+ ],
56
+ "ASYNC": [
57
+ "async"
58
+ ],
59
+ "AWAIT": [
60
+ "await"
61
+ ],
62
+ "YIELD": [
63
+ "yield"
64
+ ],
65
+ "LAMBDA": [
66
+ "lambda"
67
+ ],
68
+ "DEFER": [
69
+ "defer"
70
+ ],
71
+ "GO": [
72
+ "go"
73
+ ],
74
+ "TRY": [
75
+ "try"
76
+ ],
77
+ "CATCH": [
78
+ "catch"
79
+ ],
80
+ "FINALLY": [
81
+ "finally"
82
+ ],
83
+ "THROW": [
84
+ "throw"
85
+ ],
86
+ "LET": [
87
+ "let"
88
+ ],
89
+ "CONST": [
90
+ "const"
91
+ ],
92
+ "VAR": [
93
+ "var"
94
+ ],
95
+ "MUT": [
96
+ "mut"
97
+ ],
98
+ "GLOBAL": [
99
+ "global"
100
+ ],
101
+ "NONLOCAL": [
102
+ "nonlocal"
103
+ ],
104
+ "CLASS": [
105
+ "class"
106
+ ],
107
+ "STRUCT": [
108
+ "struct"
109
+ ],
110
+ "TRAIT": [
111
+ "trait"
112
+ ],
113
+ "IMPL": [
114
+ "impl"
115
+ ],
116
+ "INTERFACE": [
117
+ "interface"
118
+ ],
119
+ "ENUM": [
120
+ "enum"
121
+ ],
122
+ "TYPE": [
123
+ "type"
124
+ ],
125
+ "EXTENDS": [
126
+ "extends"
127
+ ],
128
+ "IMPLEMENTS": [
129
+ "implements"
130
+ ],
131
+ "NEW": [
132
+ "new"
133
+ ],
134
+ "THIS": [
135
+ "this"
136
+ ],
137
+ "SELF": [
138
+ "self"
139
+ ],
140
+ "SUPER": [
141
+ "super"
142
+ ],
143
+ "STATIC": [
144
+ "static"
145
+ ],
146
+ "IMPORT": [
147
+ "import"
148
+ ],
149
+ "EXPORT": [
150
+ "export"
151
+ ],
152
+ "FROM": [
153
+ "from"
154
+ ],
155
+ "AS": [
156
+ "as"
157
+ ],
158
+ "MODULE": [
159
+ "module"
160
+ ],
161
+ "NAMESPACE": [
162
+ "namespace"
163
+ ],
164
+ "PACKAGE": [
165
+ "package"
166
+ ],
167
+ "USE": [
168
+ "use"
169
+ ],
170
+ "PUB": [
171
+ "public"
172
+ ],
173
+ "CRATE": [
174
+ "crate"
175
+ ],
176
+ "WITH": [
177
+ "with"
178
+ ],
179
+ "PASS": [
180
+ "pass"
181
+ ],
182
+ "ASSERT": [
183
+ "assert"
184
+ ],
185
+ "ASSERTS": [
186
+ "asserts"
187
+ ],
188
+ "PRINT": [
189
+ "print"
190
+ ],
191
+ "TRUE": [
192
+ "true"
193
+ ],
194
+ "FALSE": [
195
+ "false"
196
+ ],
197
+ "NULL": [
198
+ "null"
199
+ ],
200
+ "NIL": [
201
+ "null"
202
+ ],
203
+ "UNDEFINED": [
204
+ "undefined"
205
+ ],
206
+ "UNSAFE": [
207
+ "unsafe"
208
+ ],
209
+ "EXTERN": [
210
+ "declare"
211
+ ],
212
+ "CHAN": [
213
+ "chan"
214
+ ],
215
+ "MAP": [
216
+ "map"
217
+ ],
218
+ "AND": [
219
+ "and"
220
+ ],
221
+ "OR": [
222
+ "or"
223
+ ],
224
+ "NOT": [
225
+ "not"
226
+ ],
227
+ "IN": [
228
+ "in"
229
+ ],
230
+ "IS": [
231
+ "is"
232
+ ],
233
+ "DEL": [
234
+ "del"
235
+ ],
236
+ "DO": [
237
+ "do"
238
+ ],
239
+ "DEBUGGER": [
240
+ "debugger"
241
+ ],
242
+ "TYPEOF": [
243
+ "typeof"
244
+ ],
245
+ "VOID": [
246
+ "void"
247
+ ],
248
+ "INSTANCEOF": [
249
+ "instanceof"
250
+ ],
251
+ "PRIVATE": [
252
+ "private"
253
+ ],
254
+ "PROTECTED": [
255
+ "protected"
256
+ ],
257
+ "PUBLIC": [
258
+ "public"
259
+ ],
260
+ "READONLY": [
261
+ "readonly"
262
+ ],
263
+ "ABSTRACT": [
264
+ "abstract"
265
+ ],
266
+ "DECLARE": [
267
+ "declare"
268
+ ],
269
+ "GET": [
270
+ "get"
271
+ ],
272
+ "SET": [
273
+ "set"
274
+ ],
275
+ "INFER": [
276
+ "infer"
277
+ ],
278
+ "KEYOF": [
279
+ "keyof"
280
+ ],
281
+ "UNIQUE": [
282
+ "unique"
283
+ ],
284
+ "SATISFIES": [
285
+ "satisfies"
286
+ ],
287
+ "DYN": [
288
+ "dyn"
289
+ ],
290
+ "MOVE": [
291
+ "move"
292
+ ],
293
+ "REF": [
294
+ "ref"
295
+ ],
296
+ "WHERE": [
297
+ "where"
298
+ ]
299
+ }