@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,332 @@
1
+ {
2
+ "name": "bambara",
3
+ "languageCode": "bm",
4
+ "locale": "bm-ML",
5
+ "countries": [
6
+ "ML",
7
+ "SN",
8
+ "CI",
9
+ "BF"
10
+ ],
11
+ "regions": [
12
+ "West Africa"
13
+ ],
14
+ "version": "0.1.0",
15
+ "displayName": "Bambara",
16
+ "description": "Bambara keyword map — starter pack (community contributions welcome)",
17
+ "reviewStatus": "starter",
18
+ "contributors": [
19
+ "kolanutTechnologies"
20
+ ],
21
+ "targets": [
22
+ "javascript",
23
+ "python",
24
+ "typescript",
25
+ "go",
26
+ "rust"
27
+ ],
28
+ "keywords": {
29
+ "IF": [
30
+ "if"
31
+ ],
32
+ "ELSE": [
33
+ "else"
34
+ ],
35
+ "ELIF": [
36
+ "else"
37
+ ],
38
+ "FOR": [
39
+ "for"
40
+ ],
41
+ "WHILE": [
42
+ "while"
43
+ ],
44
+ "LOOP": [
45
+ "loop"
46
+ ],
47
+ "BREAK": [
48
+ "break"
49
+ ],
50
+ "CONTINUE": [
51
+ "continue"
52
+ ],
53
+ "SWITCH": [
54
+ "switch"
55
+ ],
56
+ "MATCH": [
57
+ "match"
58
+ ],
59
+ "CASE": [
60
+ "case"
61
+ ],
62
+ "DEFAULT": [
63
+ "default"
64
+ ],
65
+ "GOTO": [
66
+ "goto"
67
+ ],
68
+ "FALLTHROUGH": [
69
+ "fallthrough"
70
+ ],
71
+ "SELECT": [
72
+ "select"
73
+ ],
74
+ "RANGE": [
75
+ "range"
76
+ ],
77
+ "FUNCTION": [
78
+ "function"
79
+ ],
80
+ "RETURN": [
81
+ "return"
82
+ ],
83
+ "ASYNC": [
84
+ "async"
85
+ ],
86
+ "AWAIT": [
87
+ "await"
88
+ ],
89
+ "YIELD": [
90
+ "yield"
91
+ ],
92
+ "LAMBDA": [
93
+ "lambda"
94
+ ],
95
+ "DEFER": [
96
+ "defer"
97
+ ],
98
+ "GO": [
99
+ "go"
100
+ ],
101
+ "TRY": [
102
+ "try"
103
+ ],
104
+ "CATCH": [
105
+ "catch"
106
+ ],
107
+ "FINALLY": [
108
+ "finally"
109
+ ],
110
+ "THROW": [
111
+ "throw"
112
+ ],
113
+ "LET": [
114
+ "let"
115
+ ],
116
+ "CONST": [
117
+ "const"
118
+ ],
119
+ "VAR": [
120
+ "var"
121
+ ],
122
+ "MUT": [
123
+ "mut"
124
+ ],
125
+ "GLOBAL": [
126
+ "global"
127
+ ],
128
+ "NONLOCAL": [
129
+ "nonlocal"
130
+ ],
131
+ "CLASS": [
132
+ "class"
133
+ ],
134
+ "STRUCT": [
135
+ "struct"
136
+ ],
137
+ "TRAIT": [
138
+ "trait"
139
+ ],
140
+ "IMPL": [
141
+ "impl"
142
+ ],
143
+ "INTERFACE": [
144
+ "interface"
145
+ ],
146
+ "ENUM": [
147
+ "enum"
148
+ ],
149
+ "TYPE": [
150
+ "type"
151
+ ],
152
+ "EXTENDS": [
153
+ "extends"
154
+ ],
155
+ "IMPLEMENTS": [
156
+ "implements"
157
+ ],
158
+ "NEW": [
159
+ "new"
160
+ ],
161
+ "THIS": [
162
+ "this"
163
+ ],
164
+ "SELF": [
165
+ "self"
166
+ ],
167
+ "SUPER": [
168
+ "super"
169
+ ],
170
+ "STATIC": [
171
+ "static"
172
+ ],
173
+ "IMPORT": [
174
+ "import"
175
+ ],
176
+ "EXPORT": [
177
+ "export"
178
+ ],
179
+ "FROM": [
180
+ "from"
181
+ ],
182
+ "AS": [
183
+ "as"
184
+ ],
185
+ "MODULE": [
186
+ "module"
187
+ ],
188
+ "NAMESPACE": [
189
+ "namespace"
190
+ ],
191
+ "PACKAGE": [
192
+ "package"
193
+ ],
194
+ "USE": [
195
+ "use"
196
+ ],
197
+ "PUB": [
198
+ "public"
199
+ ],
200
+ "CRATE": [
201
+ "crate"
202
+ ],
203
+ "WITH": [
204
+ "with"
205
+ ],
206
+ "PASS": [
207
+ "pass"
208
+ ],
209
+ "ASSERT": [
210
+ "assert"
211
+ ],
212
+ "ASSERTS": [
213
+ "asserts"
214
+ ],
215
+ "PRINT": [
216
+ "print"
217
+ ],
218
+ "TRUE": [
219
+ "true"
220
+ ],
221
+ "FALSE": [
222
+ "false"
223
+ ],
224
+ "NULL": [
225
+ "null"
226
+ ],
227
+ "NIL": [
228
+ "null"
229
+ ],
230
+ "UNDEFINED": [
231
+ "undefined"
232
+ ],
233
+ "UNSAFE": [
234
+ "unsafe"
235
+ ],
236
+ "EXTERN": [
237
+ "declare"
238
+ ],
239
+ "CHAN": [
240
+ "chan"
241
+ ],
242
+ "MAP": [
243
+ "map"
244
+ ],
245
+ "AND": [
246
+ "and"
247
+ ],
248
+ "OR": [
249
+ "or"
250
+ ],
251
+ "NOT": [
252
+ "not"
253
+ ],
254
+ "IN": [
255
+ "in"
256
+ ],
257
+ "IS": [
258
+ "is"
259
+ ],
260
+ "DEL": [
261
+ "del"
262
+ ],
263
+ "DO": [
264
+ "do"
265
+ ],
266
+ "DEBUGGER": [
267
+ "debugger"
268
+ ],
269
+ "TYPEOF": [
270
+ "typeof"
271
+ ],
272
+ "VOID": [
273
+ "void"
274
+ ],
275
+ "INSTANCEOF": [
276
+ "instanceof"
277
+ ],
278
+ "PRIVATE": [
279
+ "private"
280
+ ],
281
+ "PROTECTED": [
282
+ "protected"
283
+ ],
284
+ "PUBLIC": [
285
+ "public"
286
+ ],
287
+ "READONLY": [
288
+ "readonly"
289
+ ],
290
+ "ABSTRACT": [
291
+ "abstract"
292
+ ],
293
+ "DECLARE": [
294
+ "declare"
295
+ ],
296
+ "GET": [
297
+ "get"
298
+ ],
299
+ "SET": [
300
+ "set"
301
+ ],
302
+ "INFER": [
303
+ "infer"
304
+ ],
305
+ "KEYOF": [
306
+ "keyof"
307
+ ],
308
+ "UNIQUE": [
309
+ "unique"
310
+ ],
311
+ "SATISFIES": [
312
+ "satisfies"
313
+ ],
314
+ "DYN": [
315
+ "dyn"
316
+ ],
317
+ "MOVE": [
318
+ "move"
319
+ ],
320
+ "REF": [
321
+ "ref"
322
+ ],
323
+ "WHERE": [
324
+ "where"
325
+ ]
326
+ },
327
+ "scopeNote": "Bambara of Mali and West Africa.",
328
+ "recommendedPartners": [
329
+ "ACALAN",
330
+ "Université de Bamako"
331
+ ]
332
+ }
@@ -0,0 +1,183 @@
1
+ {
2
+ "version": "0.1.0",
3
+ "byCountry": {
4
+ "NG": [
5
+ "fulfulde",
6
+ "hausa",
7
+ "igbo",
8
+ "nigerian-pidgin",
9
+ "yoruba"
10
+ ],
11
+ "BJ": [
12
+ "french",
13
+ "yoruba"
14
+ ],
15
+ "TG": [
16
+ "french",
17
+ "yoruba"
18
+ ],
19
+ "NE": [
20
+ "french",
21
+ "fulfulde",
22
+ "hausa"
23
+ ],
24
+ "GH": [
25
+ "hausa",
26
+ "twi"
27
+ ],
28
+ "SD": [
29
+ "arabic",
30
+ "hausa"
31
+ ],
32
+ "KE": [
33
+ "oromo",
34
+ "somali",
35
+ "swahili"
36
+ ],
37
+ "TZ": [
38
+ "swahili"
39
+ ],
40
+ "UG": [
41
+ "luganda",
42
+ "swahili"
43
+ ],
44
+ "CD": [
45
+ "french",
46
+ "lingala",
47
+ "swahili"
48
+ ],
49
+ "RW": [
50
+ "french",
51
+ "kinyarwanda",
52
+ "swahili"
53
+ ],
54
+ "ET": [
55
+ "amharic",
56
+ "oromo",
57
+ "somali",
58
+ "tigrinya"
59
+ ],
60
+ "ZA": [
61
+ "afrikaans",
62
+ "sesotho",
63
+ "setswana",
64
+ "xhosa",
65
+ "zulu"
66
+ ],
67
+ "SO": [
68
+ "arabic",
69
+ "somali"
70
+ ],
71
+ "DJ": [
72
+ "arabic",
73
+ "french",
74
+ "somali"
75
+ ],
76
+ "SN": [
77
+ "bambara",
78
+ "french",
79
+ "fulfulde",
80
+ "wolof"
81
+ ],
82
+ "GM": [
83
+ "fulfulde",
84
+ "wolof"
85
+ ],
86
+ "MR": [
87
+ "arabic",
88
+ "french",
89
+ "wolof"
90
+ ],
91
+ "CG": [
92
+ "french",
93
+ "lingala"
94
+ ],
95
+ "ZW": [
96
+ "shona"
97
+ ],
98
+ "ER": [
99
+ "tigrinya"
100
+ ],
101
+ "NA": [
102
+ "afrikaans",
103
+ "setswana"
104
+ ],
105
+ "EG": [
106
+ "arabic"
107
+ ],
108
+ "LY": [
109
+ "arabic"
110
+ ],
111
+ "TN": [
112
+ "arabic"
113
+ ],
114
+ "DZ": [
115
+ "arabic"
116
+ ],
117
+ "MA": [
118
+ "arabic"
119
+ ],
120
+ "KM": [
121
+ "arabic",
122
+ "french"
123
+ ],
124
+ "CI": [
125
+ "bambara",
126
+ "french"
127
+ ],
128
+ "ML": [
129
+ "bambara",
130
+ "french",
131
+ "fulfulde"
132
+ ],
133
+ "BF": [
134
+ "bambara",
135
+ "french",
136
+ "fulfulde"
137
+ ],
138
+ "CM": [
139
+ "french",
140
+ "fulfulde"
141
+ ],
142
+ "GA": [
143
+ "french"
144
+ ],
145
+ "MG": [
146
+ "french"
147
+ ],
148
+ "BI": [
149
+ "french"
150
+ ],
151
+ "TD": [
152
+ "french"
153
+ ],
154
+ "CF": [
155
+ "french"
156
+ ],
157
+ "GN": [
158
+ "french",
159
+ "fulfulde"
160
+ ],
161
+ "LS": [
162
+ "sesotho"
163
+ ],
164
+ "BW": [
165
+ "setswana"
166
+ ],
167
+ "AO": [
168
+ "portuguese-africa"
169
+ ],
170
+ "MZ": [
171
+ "portuguese-africa"
172
+ ],
173
+ "CV": [
174
+ "portuguese-africa"
175
+ ],
176
+ "GW": [
177
+ "portuguese-africa"
178
+ ],
179
+ "ST": [
180
+ "portuguese-africa"
181
+ ]
182
+ }
183
+ }
@@ -0,0 +1,49 @@
1
+ {
2
+ "version": "0.1.0",
3
+ "byRegion": {
4
+ "West Africa": [
5
+ "bambara",
6
+ "french",
7
+ "fulfulde",
8
+ "hausa",
9
+ "igbo",
10
+ "nigerian-pidgin",
11
+ "portuguese-africa",
12
+ "twi",
13
+ "wolof",
14
+ "yoruba"
15
+ ],
16
+ "East Africa": [
17
+ "amharic",
18
+ "arabic",
19
+ "french",
20
+ "kinyarwanda",
21
+ "luganda",
22
+ "oromo",
23
+ "swahili",
24
+ "tigrinya"
25
+ ],
26
+ "Southern Africa": [
27
+ "afrikaans",
28
+ "portuguese-africa",
29
+ "sesotho",
30
+ "setswana",
31
+ "shona",
32
+ "xhosa",
33
+ "zulu"
34
+ ],
35
+ "Horn of Africa": [
36
+ "somali"
37
+ ],
38
+ "Central Africa": [
39
+ "french",
40
+ "lingala"
41
+ ],
42
+ "North Africa": [
43
+ "arabic"
44
+ ],
45
+ "Indian Ocean": [
46
+ "french"
47
+ ]
48
+ }
49
+ }