@lokascript/semantic 1.0.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.
- package/LICENSE +21 -0
- package/README.md +686 -0
- package/dist/browser-ar.ar.global.js +2 -0
- package/dist/browser-core.core.global.js +2 -0
- package/dist/browser-de.de.global.js +2 -0
- package/dist/browser-east-asian.east-asian.global.js +2 -0
- package/dist/browser-en-tr.en-tr.global.js +2 -0
- package/dist/browser-en.en.global.js +2 -0
- package/dist/browser-es-en.es-en.global.js +2 -0
- package/dist/browser-es.es.global.js +2 -0
- package/dist/browser-fr.fr.global.js +2 -0
- package/dist/browser-id.id.global.js +2 -0
- package/dist/browser-ja.ja.global.js +2 -0
- package/dist/browser-ko.ko.global.js +2 -0
- package/dist/browser-lazy.lazy.global.js +2 -0
- package/dist/browser-priority.priority.global.js +2 -0
- package/dist/browser-pt.pt.global.js +2 -0
- package/dist/browser-qu.qu.global.js +2 -0
- package/dist/browser-sw.sw.global.js +2 -0
- package/dist/browser-tr.tr.global.js +2 -0
- package/dist/browser-western.western.global.js +2 -0
- package/dist/browser-zh.zh.global.js +2 -0
- package/dist/browser.global.js +3 -0
- package/dist/browser.global.js.map +1 -0
- package/dist/index.cjs +35051 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.d.cts +3426 -0
- package/dist/index.d.ts +3426 -0
- package/dist/index.js +34890 -0
- package/dist/index.js.map +1 -0
- package/dist/languages/ar.d.ts +78 -0
- package/dist/languages/ar.js +1622 -0
- package/dist/languages/ar.js.map +1 -0
- package/dist/languages/de.d.ts +38 -0
- package/dist/languages/de.js +1168 -0
- package/dist/languages/de.js.map +1 -0
- package/dist/languages/en.d.ts +44 -0
- package/dist/languages/en.js +3491 -0
- package/dist/languages/en.js.map +1 -0
- package/dist/languages/es.d.ts +52 -0
- package/dist/languages/es.js +1493 -0
- package/dist/languages/es.js.map +1 -0
- package/dist/languages/fr.d.ts +37 -0
- package/dist/languages/fr.js +1159 -0
- package/dist/languages/fr.js.map +1 -0
- package/dist/languages/id.d.ts +35 -0
- package/dist/languages/id.js +1152 -0
- package/dist/languages/id.js.map +1 -0
- package/dist/languages/ja.d.ts +53 -0
- package/dist/languages/ja.js +1430 -0
- package/dist/languages/ja.js.map +1 -0
- package/dist/languages/ko.d.ts +51 -0
- package/dist/languages/ko.js +1729 -0
- package/dist/languages/ko.js.map +1 -0
- package/dist/languages/pt.d.ts +37 -0
- package/dist/languages/pt.js +1127 -0
- package/dist/languages/pt.js.map +1 -0
- package/dist/languages/qu.d.ts +36 -0
- package/dist/languages/qu.js +1143 -0
- package/dist/languages/qu.js.map +1 -0
- package/dist/languages/sw.d.ts +35 -0
- package/dist/languages/sw.js +1147 -0
- package/dist/languages/sw.js.map +1 -0
- package/dist/languages/tr.d.ts +45 -0
- package/dist/languages/tr.js +1529 -0
- package/dist/languages/tr.js.map +1 -0
- package/dist/languages/zh.d.ts +58 -0
- package/dist/languages/zh.js +1257 -0
- package/dist/languages/zh.js.map +1 -0
- package/dist/types-C4dcj53L.d.ts +600 -0
- package/package.json +202 -0
- package/src/__test-utils__/index.ts +7 -0
- package/src/__test-utils__/test-helpers.ts +8 -0
- package/src/__types__/test-helpers.ts +122 -0
- package/src/analysis/index.ts +479 -0
- package/src/ast-builder/command-mappers.ts +1133 -0
- package/src/ast-builder/expression-parser/index.ts +41 -0
- package/src/ast-builder/expression-parser/parser.ts +563 -0
- package/src/ast-builder/expression-parser/tokenizer.ts +394 -0
- package/src/ast-builder/expression-parser/types.ts +208 -0
- package/src/ast-builder/index.ts +536 -0
- package/src/ast-builder/value-converters.ts +172 -0
- package/src/bridge.ts +275 -0
- package/src/browser-ar.ts +162 -0
- package/src/browser-core.ts +231 -0
- package/src/browser-de.ts +162 -0
- package/src/browser-east-asian.ts +173 -0
- package/src/browser-en-tr.ts +165 -0
- package/src/browser-en.ts +157 -0
- package/src/browser-es-en.ts +200 -0
- package/src/browser-es.ts +170 -0
- package/src/browser-fr.ts +162 -0
- package/src/browser-id.ts +162 -0
- package/src/browser-ja.ts +162 -0
- package/src/browser-ko.ts +162 -0
- package/src/browser-lazy.ts +189 -0
- package/src/browser-priority.ts +214 -0
- package/src/browser-pt.ts +162 -0
- package/src/browser-qu.ts +162 -0
- package/src/browser-sw.ts +162 -0
- package/src/browser-tr.ts +162 -0
- package/src/browser-western.ts +181 -0
- package/src/browser-zh.ts +162 -0
- package/src/browser.ts +268 -0
- package/src/cache/index.ts +14 -0
- package/src/cache/semantic-cache.ts +344 -0
- package/src/core-bridge.ts +372 -0
- package/src/explicit/converter.ts +258 -0
- package/src/explicit/index.ts +18 -0
- package/src/explicit/parser.ts +236 -0
- package/src/explicit/renderer.ts +424 -0
- package/src/generators/command-schemas.ts +1636 -0
- package/src/generators/event-handler-generator.ts +109 -0
- package/src/generators/index.ts +117 -0
- package/src/generators/language-profiles.ts +139 -0
- package/src/generators/pattern-generator.ts +537 -0
- package/src/generators/profiles/arabic.ts +131 -0
- package/src/generators/profiles/bengali.ts +132 -0
- package/src/generators/profiles/chinese.ts +124 -0
- package/src/generators/profiles/english.ts +113 -0
- package/src/generators/profiles/french.ts +125 -0
- package/src/generators/profiles/german.ts +126 -0
- package/src/generators/profiles/hindi.ts +146 -0
- package/src/generators/profiles/index.ts +46 -0
- package/src/generators/profiles/indonesian.ts +125 -0
- package/src/generators/profiles/italian.ts +139 -0
- package/src/generators/profiles/japanese.ts +149 -0
- package/src/generators/profiles/korean.ts +127 -0
- package/src/generators/profiles/marker-templates.ts +288 -0
- package/src/generators/profiles/ms.ts +130 -0
- package/src/generators/profiles/polish.ts +249 -0
- package/src/generators/profiles/portuguese.ts +115 -0
- package/src/generators/profiles/quechua.ts +113 -0
- package/src/generators/profiles/russian.ts +260 -0
- package/src/generators/profiles/spanish.ts +130 -0
- package/src/generators/profiles/swahili.ts +129 -0
- package/src/generators/profiles/thai.ts +132 -0
- package/src/generators/profiles/tl.ts +128 -0
- package/src/generators/profiles/turkish.ts +124 -0
- package/src/generators/profiles/types.ts +165 -0
- package/src/generators/profiles/ukrainian.ts +270 -0
- package/src/generators/profiles/vietnamese.ts +133 -0
- package/src/generators/schema-error-codes.ts +160 -0
- package/src/generators/schema-validator.ts +391 -0
- package/src/index.ts +429 -0
- package/src/language-building-schema.ts +3170 -0
- package/src/language-loader.ts +394 -0
- package/src/languages/_all.ts +65 -0
- package/src/languages/ar.ts +15 -0
- package/src/languages/bn.ts +16 -0
- package/src/languages/de.ts +15 -0
- package/src/languages/en.ts +29 -0
- package/src/languages/es.ts +15 -0
- package/src/languages/fr.ts +15 -0
- package/src/languages/hi.ts +26 -0
- package/src/languages/id.ts +15 -0
- package/src/languages/index.ts +18 -0
- package/src/languages/it.ts +15 -0
- package/src/languages/ja.ts +15 -0
- package/src/languages/ko.ts +15 -0
- package/src/languages/ms.ts +16 -0
- package/src/languages/pl.ts +18 -0
- package/src/languages/pt.ts +15 -0
- package/src/languages/qu.ts +15 -0
- package/src/languages/ru.ts +26 -0
- package/src/languages/sw.ts +15 -0
- package/src/languages/th.ts +16 -0
- package/src/languages/tl.ts +16 -0
- package/src/languages/tr.ts +15 -0
- package/src/languages/uk.ts +26 -0
- package/src/languages/vi.ts +16 -0
- package/src/languages/zh.ts +15 -0
- package/src/parser/index.ts +15 -0
- package/src/parser/pattern-matcher.ts +1181 -0
- package/src/parser/semantic-parser.ts +573 -0
- package/src/parser/utils/index.ts +35 -0
- package/src/parser/utils/marker-resolution.ts +111 -0
- package/src/parser/utils/possessive-keywords.ts +43 -0
- package/src/parser/utils/role-positioning.ts +70 -0
- package/src/parser/utils/type-validation.ts +134 -0
- package/src/patterns/add/ar.ts +71 -0
- package/src/patterns/add/bn.ts +70 -0
- package/src/patterns/add/hi.ts +69 -0
- package/src/patterns/add/index.ts +87 -0
- package/src/patterns/add/it.ts +61 -0
- package/src/patterns/add/ja.ts +93 -0
- package/src/patterns/add/ko.ts +74 -0
- package/src/patterns/add/ms.ts +30 -0
- package/src/patterns/add/pl.ts +62 -0
- package/src/patterns/add/ru.ts +62 -0
- package/src/patterns/add/th.ts +49 -0
- package/src/patterns/add/tl.ts +30 -0
- package/src/patterns/add/tr.ts +71 -0
- package/src/patterns/add/uk.ts +62 -0
- package/src/patterns/add/vi.ts +61 -0
- package/src/patterns/add/zh.ts +71 -0
- package/src/patterns/builders.ts +207 -0
- package/src/patterns/decrement/bn.ts +70 -0
- package/src/patterns/decrement/de.ts +42 -0
- package/src/patterns/decrement/hi.ts +68 -0
- package/src/patterns/decrement/index.ts +79 -0
- package/src/patterns/decrement/it.ts +69 -0
- package/src/patterns/decrement/ms.ts +30 -0
- package/src/patterns/decrement/pl.ts +58 -0
- package/src/patterns/decrement/ru.ts +58 -0
- package/src/patterns/decrement/th.ts +49 -0
- package/src/patterns/decrement/tl.ts +30 -0
- package/src/patterns/decrement/tr.ts +48 -0
- package/src/patterns/decrement/uk.ts +58 -0
- package/src/patterns/decrement/vi.ts +61 -0
- package/src/patterns/decrement/zh.ts +32 -0
- package/src/patterns/en.ts +302 -0
- package/src/patterns/event-handler/ar.ts +151 -0
- package/src/patterns/event-handler/bn.ts +72 -0
- package/src/patterns/event-handler/de.ts +117 -0
- package/src/patterns/event-handler/en.ts +117 -0
- package/src/patterns/event-handler/es.ts +136 -0
- package/src/patterns/event-handler/fr.ts +117 -0
- package/src/patterns/event-handler/hi.ts +64 -0
- package/src/patterns/event-handler/id.ts +117 -0
- package/src/patterns/event-handler/index.ts +119 -0
- package/src/patterns/event-handler/it.ts +54 -0
- package/src/patterns/event-handler/ja.ts +118 -0
- package/src/patterns/event-handler/ko.ts +133 -0
- package/src/patterns/event-handler/ms.ts +30 -0
- package/src/patterns/event-handler/pl.ts +62 -0
- package/src/patterns/event-handler/pt.ts +117 -0
- package/src/patterns/event-handler/qu.ts +66 -0
- package/src/patterns/event-handler/ru.ts +62 -0
- package/src/patterns/event-handler/shared.ts +270 -0
- package/src/patterns/event-handler/sw.ts +117 -0
- package/src/patterns/event-handler/th.ts +53 -0
- package/src/patterns/event-handler/tl.ts +30 -0
- package/src/patterns/event-handler/tr.ts +170 -0
- package/src/patterns/event-handler/uk.ts +62 -0
- package/src/patterns/event-handler/vi.ts +61 -0
- package/src/patterns/event-handler/zh.ts +150 -0
- package/src/patterns/get/ar.ts +49 -0
- package/src/patterns/get/bn.ts +47 -0
- package/src/patterns/get/de.ts +32 -0
- package/src/patterns/get/hi.ts +52 -0
- package/src/patterns/get/index.ts +83 -0
- package/src/patterns/get/it.ts +56 -0
- package/src/patterns/get/ja.ts +53 -0
- package/src/patterns/get/ko.ts +53 -0
- package/src/patterns/get/ms.ts +30 -0
- package/src/patterns/get/pl.ts +57 -0
- package/src/patterns/get/ru.ts +57 -0
- package/src/patterns/get/th.ts +29 -0
- package/src/patterns/get/tl.ts +30 -0
- package/src/patterns/get/uk.ts +57 -0
- package/src/patterns/get/vi.ts +48 -0
- package/src/patterns/grammar-transformed/index.ts +39 -0
- package/src/patterns/grammar-transformed/ja.ts +1713 -0
- package/src/patterns/grammar-transformed/ko.ts +1311 -0
- package/src/patterns/grammar-transformed/tr.ts +1067 -0
- package/src/patterns/hide/ar.ts +67 -0
- package/src/patterns/hide/bn.ts +47 -0
- package/src/patterns/hide/de.ts +36 -0
- package/src/patterns/hide/hi.ts +61 -0
- package/src/patterns/hide/index.ts +91 -0
- package/src/patterns/hide/it.ts +56 -0
- package/src/patterns/hide/ja.ts +69 -0
- package/src/patterns/hide/ko.ts +69 -0
- package/src/patterns/hide/ms.ts +30 -0
- package/src/patterns/hide/pl.ts +57 -0
- package/src/patterns/hide/ru.ts +57 -0
- package/src/patterns/hide/th.ts +29 -0
- package/src/patterns/hide/tl.ts +30 -0
- package/src/patterns/hide/tr.ts +65 -0
- package/src/patterns/hide/uk.ts +57 -0
- package/src/patterns/hide/vi.ts +56 -0
- package/src/patterns/hide/zh.ts +68 -0
- package/src/patterns/increment/bn.ts +70 -0
- package/src/patterns/increment/de.ts +36 -0
- package/src/patterns/increment/hi.ts +68 -0
- package/src/patterns/increment/index.ts +79 -0
- package/src/patterns/increment/it.ts +69 -0
- package/src/patterns/increment/ms.ts +30 -0
- package/src/patterns/increment/pl.ts +58 -0
- package/src/patterns/increment/ru.ts +58 -0
- package/src/patterns/increment/th.ts +49 -0
- package/src/patterns/increment/tl.ts +30 -0
- package/src/patterns/increment/tr.ts +52 -0
- package/src/patterns/increment/uk.ts +58 -0
- package/src/patterns/increment/vi.ts +61 -0
- package/src/patterns/increment/zh.ts +32 -0
- package/src/patterns/index.ts +84 -0
- package/src/patterns/languages/en/control-flow.ts +93 -0
- package/src/patterns/languages/en/fetch.ts +62 -0
- package/src/patterns/languages/en/index.ts +42 -0
- package/src/patterns/languages/en/repeat.ts +67 -0
- package/src/patterns/languages/en/set.ts +48 -0
- package/src/patterns/languages/en/swap.ts +38 -0
- package/src/patterns/languages/en/temporal.ts +57 -0
- package/src/patterns/put/ar.ts +74 -0
- package/src/patterns/put/bn.ts +53 -0
- package/src/patterns/put/en.ts +74 -0
- package/src/patterns/put/es.ts +74 -0
- package/src/patterns/put/hi.ts +69 -0
- package/src/patterns/put/id.ts +96 -0
- package/src/patterns/put/index.ts +99 -0
- package/src/patterns/put/it.ts +56 -0
- package/src/patterns/put/ja.ts +75 -0
- package/src/patterns/put/ko.ts +67 -0
- package/src/patterns/put/ms.ts +30 -0
- package/src/patterns/put/pl.ts +81 -0
- package/src/patterns/put/ru.ts +85 -0
- package/src/patterns/put/th.ts +32 -0
- package/src/patterns/put/tl.ts +30 -0
- package/src/patterns/put/tr.ts +67 -0
- package/src/patterns/put/uk.ts +85 -0
- package/src/patterns/put/vi.ts +72 -0
- package/src/patterns/put/zh.ts +62 -0
- package/src/patterns/registry.ts +163 -0
- package/src/patterns/remove/ar.ts +71 -0
- package/src/patterns/remove/bn.ts +68 -0
- package/src/patterns/remove/hi.ts +69 -0
- package/src/patterns/remove/index.ts +87 -0
- package/src/patterns/remove/it.ts +69 -0
- package/src/patterns/remove/ja.ts +74 -0
- package/src/patterns/remove/ko.ts +78 -0
- package/src/patterns/remove/ms.ts +30 -0
- package/src/patterns/remove/pl.ts +62 -0
- package/src/patterns/remove/ru.ts +62 -0
- package/src/patterns/remove/th.ts +49 -0
- package/src/patterns/remove/tl.ts +30 -0
- package/src/patterns/remove/tr.ts +78 -0
- package/src/patterns/remove/uk.ts +62 -0
- package/src/patterns/remove/vi.ts +61 -0
- package/src/patterns/remove/zh.ts +72 -0
- package/src/patterns/set/ar.ts +84 -0
- package/src/patterns/set/bn.ts +53 -0
- package/src/patterns/set/de.ts +84 -0
- package/src/patterns/set/es.ts +92 -0
- package/src/patterns/set/fr.ts +88 -0
- package/src/patterns/set/hi.ts +56 -0
- package/src/patterns/set/id.ts +84 -0
- package/src/patterns/set/index.ts +107 -0
- package/src/patterns/set/it.ts +56 -0
- package/src/patterns/set/ja.ts +86 -0
- package/src/patterns/set/ko.ts +85 -0
- package/src/patterns/set/ms.ts +30 -0
- package/src/patterns/set/pl.ts +57 -0
- package/src/patterns/set/pt.ts +84 -0
- package/src/patterns/set/ru.ts +57 -0
- package/src/patterns/set/th.ts +31 -0
- package/src/patterns/set/tl.ts +30 -0
- package/src/patterns/set/tr.ts +107 -0
- package/src/patterns/set/uk.ts +57 -0
- package/src/patterns/set/vi.ts +53 -0
- package/src/patterns/set/zh.ts +84 -0
- package/src/patterns/show/ar.ts +67 -0
- package/src/patterns/show/bn.ts +47 -0
- package/src/patterns/show/de.ts +32 -0
- package/src/patterns/show/fr.ts +32 -0
- package/src/patterns/show/hi.ts +61 -0
- package/src/patterns/show/index.ts +95 -0
- package/src/patterns/show/it.ts +56 -0
- package/src/patterns/show/ja.ts +69 -0
- package/src/patterns/show/ko.ts +73 -0
- package/src/patterns/show/ms.ts +30 -0
- package/src/patterns/show/pl.ts +57 -0
- package/src/patterns/show/ru.ts +57 -0
- package/src/patterns/show/th.ts +29 -0
- package/src/patterns/show/tl.ts +30 -0
- package/src/patterns/show/tr.ts +65 -0
- package/src/patterns/show/uk.ts +57 -0
- package/src/patterns/show/vi.ts +56 -0
- package/src/patterns/show/zh.ts +68 -0
- package/src/patterns/take/ar.ts +51 -0
- package/src/patterns/take/index.ts +31 -0
- package/src/patterns/toggle/ar.ts +61 -0
- package/src/patterns/toggle/bn.ts +70 -0
- package/src/patterns/toggle/en.ts +61 -0
- package/src/patterns/toggle/es.ts +61 -0
- package/src/patterns/toggle/hi.ts +80 -0
- package/src/patterns/toggle/index.ts +95 -0
- package/src/patterns/toggle/it.ts +69 -0
- package/src/patterns/toggle/ja.ts +156 -0
- package/src/patterns/toggle/ko.ts +113 -0
- package/src/patterns/toggle/ms.ts +30 -0
- package/src/patterns/toggle/pl.ts +62 -0
- package/src/patterns/toggle/ru.ts +62 -0
- package/src/patterns/toggle/th.ts +50 -0
- package/src/patterns/toggle/tl.ts +30 -0
- package/src/patterns/toggle/tr.ts +88 -0
- package/src/patterns/toggle/uk.ts +62 -0
- package/src/patterns/toggle/vi.ts +61 -0
- package/src/patterns/toggle/zh.ts +99 -0
- package/src/public-api.ts +286 -0
- package/src/registry.ts +441 -0
- package/src/tokenizers/arabic.ts +723 -0
- package/src/tokenizers/base.ts +1300 -0
- package/src/tokenizers/bengali.ts +289 -0
- package/src/tokenizers/chinese.ts +481 -0
- package/src/tokenizers/english.ts +416 -0
- package/src/tokenizers/french.ts +326 -0
- package/src/tokenizers/german.ts +324 -0
- package/src/tokenizers/hindi.ts +319 -0
- package/src/tokenizers/index.ts +127 -0
- package/src/tokenizers/indonesian.ts +306 -0
- package/src/tokenizers/italian.ts +458 -0
- package/src/tokenizers/japanese.ts +447 -0
- package/src/tokenizers/korean.ts +642 -0
- package/src/tokenizers/morphology/arabic-normalizer.ts +242 -0
- package/src/tokenizers/morphology/french-normalizer.ts +268 -0
- package/src/tokenizers/morphology/german-normalizer.ts +256 -0
- package/src/tokenizers/morphology/index.ts +46 -0
- package/src/tokenizers/morphology/italian-normalizer.ts +329 -0
- package/src/tokenizers/morphology/japanese-normalizer.ts +288 -0
- package/src/tokenizers/morphology/korean-normalizer.ts +428 -0
- package/src/tokenizers/morphology/polish-normalizer.ts +264 -0
- package/src/tokenizers/morphology/portuguese-normalizer.ts +310 -0
- package/src/tokenizers/morphology/spanish-normalizer.ts +327 -0
- package/src/tokenizers/morphology/turkish-normalizer.ts +412 -0
- package/src/tokenizers/morphology/types.ts +211 -0
- package/src/tokenizers/ms.ts +198 -0
- package/src/tokenizers/polish.ts +354 -0
- package/src/tokenizers/portuguese.ts +304 -0
- package/src/tokenizers/quechua.ts +339 -0
- package/src/tokenizers/russian.ts +375 -0
- package/src/tokenizers/spanish.ts +403 -0
- package/src/tokenizers/swahili.ts +303 -0
- package/src/tokenizers/thai.ts +236 -0
- package/src/tokenizers/tl.ts +198 -0
- package/src/tokenizers/turkish.ts +411 -0
- package/src/tokenizers/ukrainian.ts +369 -0
- package/src/tokenizers/vietnamese.ts +410 -0
- package/src/types/grammar-types.ts +617 -0
- package/src/types/unified-profile.ts +267 -0
- package/src/types.ts +709 -0
- package/src/utils/confidence-calculator.ts +147 -0
- package/src/validators/command-validator.ts +380 -0
- package/src/validators/index.ts +15 -0
|
@@ -0,0 +1,260 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Russian Language Profile
|
|
3
|
+
*
|
|
4
|
+
* SVO word order, prepositions, space-separated.
|
|
5
|
+
* Russian is a fusional language with rich verb conjugation.
|
|
6
|
+
* Uses infinitive form in software UI (industry standard).
|
|
7
|
+
*/
|
|
8
|
+
|
|
9
|
+
import type { LanguageProfile } from './types';
|
|
10
|
+
|
|
11
|
+
export const russianProfile: LanguageProfile = {
|
|
12
|
+
code: 'ru',
|
|
13
|
+
name: 'Russian',
|
|
14
|
+
nativeName: 'Русский',
|
|
15
|
+
direction: 'ltr',
|
|
16
|
+
wordOrder: 'SVO',
|
|
17
|
+
markingStrategy: 'preposition',
|
|
18
|
+
usesSpaces: true,
|
|
19
|
+
defaultVerbForm: 'infinitive',
|
|
20
|
+
verb: {
|
|
21
|
+
position: 'start',
|
|
22
|
+
subjectDrop: true,
|
|
23
|
+
suffixes: ['ть', 'ться', 'ить', 'иться', 'ать', 'аться', 'еть', 'еться'],
|
|
24
|
+
},
|
|
25
|
+
references: {
|
|
26
|
+
me: 'я',
|
|
27
|
+
it: 'это',
|
|
28
|
+
you: 'ты',
|
|
29
|
+
result: 'результат',
|
|
30
|
+
event: 'событие',
|
|
31
|
+
target: 'цель',
|
|
32
|
+
body: 'body',
|
|
33
|
+
},
|
|
34
|
+
possessive: {
|
|
35
|
+
marker: '',
|
|
36
|
+
markerPosition: 'after-object',
|
|
37
|
+
usePossessiveAdjectives: true,
|
|
38
|
+
specialForms: {
|
|
39
|
+
me: 'мой',
|
|
40
|
+
it: 'его',
|
|
41
|
+
you: 'твой',
|
|
42
|
+
},
|
|
43
|
+
keywords: {
|
|
44
|
+
// "my" variants (masculine/feminine/neuter/plural)
|
|
45
|
+
мой: 'me',
|
|
46
|
+
моя: 'me',
|
|
47
|
+
моё: 'me',
|
|
48
|
+
мои: 'me',
|
|
49
|
+
// "your" variants
|
|
50
|
+
твой: 'you',
|
|
51
|
+
твоя: 'you',
|
|
52
|
+
твоё: 'you',
|
|
53
|
+
твои: 'you',
|
|
54
|
+
// "its/his/her" forms
|
|
55
|
+
его: 'it', // his/its
|
|
56
|
+
её: 'it', // her/its (feminine)
|
|
57
|
+
},
|
|
58
|
+
},
|
|
59
|
+
roleMarkers: {
|
|
60
|
+
destination: { primary: 'в', alternatives: ['на', 'к'], position: 'before' },
|
|
61
|
+
source: { primary: 'из', alternatives: ['от', 'с'], position: 'before' },
|
|
62
|
+
patient: { primary: '', position: 'before' },
|
|
63
|
+
style: { primary: 'с', alternatives: ['со'], position: 'before' },
|
|
64
|
+
},
|
|
65
|
+
keywords: {
|
|
66
|
+
// Class/Attribute operations (infinitive form)
|
|
67
|
+
toggle: {
|
|
68
|
+
primary: 'переключить',
|
|
69
|
+
alternatives: ['переключи'],
|
|
70
|
+
normalized: 'toggle',
|
|
71
|
+
form: 'infinitive',
|
|
72
|
+
},
|
|
73
|
+
add: { primary: 'добавить', alternatives: ['добавь'], normalized: 'add', form: 'infinitive' },
|
|
74
|
+
remove: {
|
|
75
|
+
primary: 'удалить',
|
|
76
|
+
alternatives: ['удали', 'убрать', 'убери'],
|
|
77
|
+
normalized: 'remove',
|
|
78
|
+
form: 'infinitive',
|
|
79
|
+
},
|
|
80
|
+
// Content operations
|
|
81
|
+
put: {
|
|
82
|
+
primary: 'положить',
|
|
83
|
+
alternatives: ['положи', 'поместить', 'помести', 'вставить', 'вставь'],
|
|
84
|
+
normalized: 'put',
|
|
85
|
+
form: 'infinitive',
|
|
86
|
+
},
|
|
87
|
+
append: {
|
|
88
|
+
primary: 'добавить_в_конец',
|
|
89
|
+
alternatives: ['дописать'],
|
|
90
|
+
normalized: 'append',
|
|
91
|
+
form: 'infinitive',
|
|
92
|
+
},
|
|
93
|
+
prepend: { primary: 'добавить_в_начало', normalized: 'prepend', form: 'infinitive' },
|
|
94
|
+
take: { primary: 'взять', alternatives: ['возьми'], normalized: 'take', form: 'infinitive' },
|
|
95
|
+
make: { primary: 'создать', alternatives: ['создай'], normalized: 'make', form: 'infinitive' },
|
|
96
|
+
clone: {
|
|
97
|
+
primary: 'клонировать',
|
|
98
|
+
alternatives: ['клонируй'],
|
|
99
|
+
normalized: 'clone',
|
|
100
|
+
form: 'infinitive',
|
|
101
|
+
},
|
|
102
|
+
swap: {
|
|
103
|
+
primary: 'поменять',
|
|
104
|
+
alternatives: ['поменяй'],
|
|
105
|
+
normalized: 'swap',
|
|
106
|
+
form: 'infinitive',
|
|
107
|
+
},
|
|
108
|
+
morph: {
|
|
109
|
+
primary: 'трансформировать',
|
|
110
|
+
alternatives: ['трансформируй'],
|
|
111
|
+
normalized: 'morph',
|
|
112
|
+
form: 'infinitive',
|
|
113
|
+
},
|
|
114
|
+
// Variable operations
|
|
115
|
+
set: {
|
|
116
|
+
primary: 'установить',
|
|
117
|
+
alternatives: ['установи', 'задать', 'задай'],
|
|
118
|
+
normalized: 'set',
|
|
119
|
+
form: 'infinitive',
|
|
120
|
+
},
|
|
121
|
+
get: { primary: 'получить', alternatives: ['получи'], normalized: 'get', form: 'infinitive' },
|
|
122
|
+
increment: {
|
|
123
|
+
primary: 'увеличить',
|
|
124
|
+
alternatives: ['увеличь'],
|
|
125
|
+
normalized: 'increment',
|
|
126
|
+
form: 'infinitive',
|
|
127
|
+
},
|
|
128
|
+
decrement: {
|
|
129
|
+
primary: 'уменьшить',
|
|
130
|
+
alternatives: ['уменьши'],
|
|
131
|
+
normalized: 'decrement',
|
|
132
|
+
form: 'infinitive',
|
|
133
|
+
},
|
|
134
|
+
log: { primary: 'записать', alternatives: ['запиши'], normalized: 'log', form: 'infinitive' },
|
|
135
|
+
// Visibility
|
|
136
|
+
show: { primary: 'показать', alternatives: ['покажи'], normalized: 'show', form: 'infinitive' },
|
|
137
|
+
hide: {
|
|
138
|
+
primary: 'скрыть',
|
|
139
|
+
alternatives: ['скрой', 'спрятать', 'спрячь'],
|
|
140
|
+
normalized: 'hide',
|
|
141
|
+
form: 'infinitive',
|
|
142
|
+
},
|
|
143
|
+
transition: {
|
|
144
|
+
primary: 'анимировать',
|
|
145
|
+
alternatives: ['анимируй'],
|
|
146
|
+
normalized: 'transition',
|
|
147
|
+
form: 'infinitive',
|
|
148
|
+
},
|
|
149
|
+
// Events
|
|
150
|
+
on: { primary: 'при', alternatives: ['когда'], normalized: 'on' },
|
|
151
|
+
trigger: {
|
|
152
|
+
primary: 'вызвать',
|
|
153
|
+
alternatives: ['вызови'],
|
|
154
|
+
normalized: 'trigger',
|
|
155
|
+
form: 'infinitive',
|
|
156
|
+
},
|
|
157
|
+
send: {
|
|
158
|
+
primary: 'отправить',
|
|
159
|
+
alternatives: ['отправь'],
|
|
160
|
+
normalized: 'send',
|
|
161
|
+
form: 'infinitive',
|
|
162
|
+
},
|
|
163
|
+
// DOM focus
|
|
164
|
+
focus: {
|
|
165
|
+
primary: 'сфокусировать',
|
|
166
|
+
alternatives: ['сфокусируй', 'фокус'],
|
|
167
|
+
normalized: 'focus',
|
|
168
|
+
form: 'infinitive',
|
|
169
|
+
},
|
|
170
|
+
blur: { primary: 'размыть', alternatives: ['размой'], normalized: 'blur', form: 'infinitive' },
|
|
171
|
+
// Navigation
|
|
172
|
+
go: {
|
|
173
|
+
primary: 'перейти',
|
|
174
|
+
alternatives: ['перейди', 'идти', 'иди'],
|
|
175
|
+
normalized: 'go',
|
|
176
|
+
form: 'infinitive',
|
|
177
|
+
},
|
|
178
|
+
// Async
|
|
179
|
+
wait: {
|
|
180
|
+
primary: 'ждать',
|
|
181
|
+
alternatives: ['жди', 'подожди'],
|
|
182
|
+
normalized: 'wait',
|
|
183
|
+
form: 'infinitive',
|
|
184
|
+
},
|
|
185
|
+
fetch: {
|
|
186
|
+
primary: 'загрузить',
|
|
187
|
+
alternatives: ['загрузи'],
|
|
188
|
+
normalized: 'fetch',
|
|
189
|
+
form: 'infinitive',
|
|
190
|
+
},
|
|
191
|
+
settle: { primary: 'стабилизировать', normalized: 'settle', form: 'infinitive' },
|
|
192
|
+
// Control flow
|
|
193
|
+
if: { primary: 'если', normalized: 'if' },
|
|
194
|
+
when: { primary: 'когда', normalized: 'when' },
|
|
195
|
+
where: { primary: 'где', normalized: 'where' },
|
|
196
|
+
else: { primary: 'иначе', normalized: 'else' },
|
|
197
|
+
repeat: {
|
|
198
|
+
primary: 'повторить',
|
|
199
|
+
alternatives: ['повтори'],
|
|
200
|
+
normalized: 'repeat',
|
|
201
|
+
form: 'infinitive',
|
|
202
|
+
},
|
|
203
|
+
for: { primary: 'для', alternatives: ['каждый'], normalized: 'for' },
|
|
204
|
+
while: { primary: 'пока', normalized: 'while' },
|
|
205
|
+
continue: {
|
|
206
|
+
primary: 'продолжить',
|
|
207
|
+
alternatives: ['продолжи'],
|
|
208
|
+
normalized: 'continue',
|
|
209
|
+
form: 'infinitive',
|
|
210
|
+
},
|
|
211
|
+
halt: {
|
|
212
|
+
primary: 'остановить',
|
|
213
|
+
alternatives: ['остановись', 'стоп'],
|
|
214
|
+
normalized: 'halt',
|
|
215
|
+
form: 'infinitive',
|
|
216
|
+
},
|
|
217
|
+
throw: { primary: 'бросить', alternatives: ['брось'], normalized: 'throw', form: 'infinitive' },
|
|
218
|
+
call: { primary: 'вызвать', alternatives: ['вызови'], normalized: 'call', form: 'infinitive' },
|
|
219
|
+
return: {
|
|
220
|
+
primary: 'вернуть',
|
|
221
|
+
alternatives: ['верни'],
|
|
222
|
+
normalized: 'return',
|
|
223
|
+
form: 'infinitive',
|
|
224
|
+
},
|
|
225
|
+
then: { primary: 'затем', alternatives: ['потом', 'тогда'], normalized: 'then' },
|
|
226
|
+
and: { primary: 'и', normalized: 'and' },
|
|
227
|
+
end: { primary: 'конец', normalized: 'end' },
|
|
228
|
+
// Advanced
|
|
229
|
+
js: { primary: 'js', normalized: 'js' },
|
|
230
|
+
async: { primary: 'асинхронно', alternatives: ['async'], normalized: 'async' },
|
|
231
|
+
tell: { primary: 'сказать', alternatives: ['скажи'], normalized: 'tell', form: 'infinitive' },
|
|
232
|
+
default: { primary: 'по_умолчанию', normalized: 'default' },
|
|
233
|
+
init: {
|
|
234
|
+
primary: 'инициализировать',
|
|
235
|
+
alternatives: ['инициализируй'],
|
|
236
|
+
normalized: 'init',
|
|
237
|
+
form: 'infinitive',
|
|
238
|
+
},
|
|
239
|
+
behavior: { primary: 'поведение', normalized: 'behavior' },
|
|
240
|
+
install: { primary: 'установить_пакет', normalized: 'install', form: 'infinitive' },
|
|
241
|
+
measure: {
|
|
242
|
+
primary: 'измерить',
|
|
243
|
+
alternatives: ['измерь'],
|
|
244
|
+
normalized: 'measure',
|
|
245
|
+
form: 'infinitive',
|
|
246
|
+
},
|
|
247
|
+
// Modifiers
|
|
248
|
+
into: { primary: 'в', alternatives: ['во'], normalized: 'into' },
|
|
249
|
+
before: { primary: 'до', alternatives: ['перед'], normalized: 'before' },
|
|
250
|
+
after: { primary: 'после', normalized: 'after' },
|
|
251
|
+
// Event modifiers
|
|
252
|
+
until: { primary: 'до', alternatives: ['пока_не'], normalized: 'until' },
|
|
253
|
+
event: { primary: 'событие', normalized: 'event' },
|
|
254
|
+
from: { primary: 'из', alternatives: ['от', 'с'], normalized: 'from' },
|
|
255
|
+
},
|
|
256
|
+
eventHandler: {
|
|
257
|
+
keyword: { primary: 'при', alternatives: ['когда'], normalized: 'on' },
|
|
258
|
+
sourceMarker: { primary: 'на', alternatives: ['в', 'при'], position: 'before' },
|
|
259
|
+
},
|
|
260
|
+
};
|
|
@@ -0,0 +1,130 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Spanish Language Profile
|
|
3
|
+
*
|
|
4
|
+
* SVO word order, prepositions, space-separated.
|
|
5
|
+
* Features rich verb conjugation with pro-drop (subject omission).
|
|
6
|
+
*/
|
|
7
|
+
|
|
8
|
+
import type { LanguageProfile } from './types';
|
|
9
|
+
|
|
10
|
+
export const spanishProfile: LanguageProfile = {
|
|
11
|
+
code: 'es',
|
|
12
|
+
name: 'Spanish',
|
|
13
|
+
nativeName: 'Español',
|
|
14
|
+
direction: 'ltr',
|
|
15
|
+
wordOrder: 'SVO',
|
|
16
|
+
markingStrategy: 'preposition',
|
|
17
|
+
usesSpaces: true,
|
|
18
|
+
// Infinitive is standard for Spanish software UI (Guardar, Cancelar, Abrir)
|
|
19
|
+
// This matches macOS, Windows, and web app conventions
|
|
20
|
+
defaultVerbForm: 'infinitive',
|
|
21
|
+
verb: {
|
|
22
|
+
position: 'start',
|
|
23
|
+
subjectDrop: true,
|
|
24
|
+
},
|
|
25
|
+
references: {
|
|
26
|
+
me: 'yo', // "I/me"
|
|
27
|
+
it: 'ello', // "it"
|
|
28
|
+
you: 'tú', // "you"
|
|
29
|
+
result: 'resultado',
|
|
30
|
+
event: 'evento',
|
|
31
|
+
target: 'objetivo',
|
|
32
|
+
body: 'cuerpo',
|
|
33
|
+
},
|
|
34
|
+
possessive: {
|
|
35
|
+
marker: 'de', // Spanish uses "de" for general possession
|
|
36
|
+
markerPosition: 'before-property',
|
|
37
|
+
usePossessiveAdjectives: true,
|
|
38
|
+
specialForms: {
|
|
39
|
+
me: 'mi', // "my" (possessive adjective)
|
|
40
|
+
it: 'su', // "its"
|
|
41
|
+
you: 'tu', // "your"
|
|
42
|
+
},
|
|
43
|
+
keywords: {
|
|
44
|
+
mi: 'me',
|
|
45
|
+
tu: 'you',
|
|
46
|
+
su: 'it',
|
|
47
|
+
},
|
|
48
|
+
},
|
|
49
|
+
roleMarkers: {
|
|
50
|
+
destination: { primary: 'en', alternatives: ['sobre', 'a'], position: 'before' },
|
|
51
|
+
source: { primary: 'de', alternatives: ['desde'], position: 'before' },
|
|
52
|
+
patient: { primary: '', position: 'before' },
|
|
53
|
+
style: { primary: 'con', position: 'before' },
|
|
54
|
+
},
|
|
55
|
+
keywords: {
|
|
56
|
+
// Class/Attribute operations
|
|
57
|
+
toggle: { primary: 'alternar', alternatives: ['cambiar', 'conmutar'], normalized: 'toggle' },
|
|
58
|
+
add: { primary: 'agregar', alternatives: ['añadir'], normalized: 'add' },
|
|
59
|
+
remove: {
|
|
60
|
+
primary: 'quitar',
|
|
61
|
+
alternatives: ['eliminar', 'remover', 'sacar'],
|
|
62
|
+
normalized: 'remove',
|
|
63
|
+
},
|
|
64
|
+
// Content operations
|
|
65
|
+
put: { primary: 'poner', alternatives: ['colocar'], normalized: 'put' },
|
|
66
|
+
append: { primary: 'añadir', normalized: 'append' },
|
|
67
|
+
prepend: { primary: 'anteponer', normalized: 'prepend' },
|
|
68
|
+
take: { primary: 'tomar', normalized: 'take' },
|
|
69
|
+
make: { primary: 'hacer', alternatives: ['crear'], normalized: 'make' },
|
|
70
|
+
clone: { primary: 'clonar', alternatives: ['copiar'], normalized: 'clone' },
|
|
71
|
+
swap: { primary: 'intercambiar', alternatives: ['cambiar'], normalized: 'swap' },
|
|
72
|
+
morph: { primary: 'transformar', alternatives: ['convertir'], normalized: 'morph' },
|
|
73
|
+
// Variable operations
|
|
74
|
+
set: { primary: 'establecer', alternatives: ['fijar', 'definir'], normalized: 'set' },
|
|
75
|
+
get: { primary: 'obtener', alternatives: ['conseguir'], normalized: 'get' },
|
|
76
|
+
increment: { primary: 'incrementar', alternatives: ['aumentar'], normalized: 'increment' },
|
|
77
|
+
decrement: { primary: 'decrementar', alternatives: ['disminuir'], normalized: 'decrement' },
|
|
78
|
+
log: { primary: 'registrar', alternatives: ['imprimir'], normalized: 'log' },
|
|
79
|
+
// Visibility
|
|
80
|
+
show: { primary: 'mostrar', alternatives: ['enseñar'], normalized: 'show' },
|
|
81
|
+
hide: { primary: 'ocultar', alternatives: ['esconder'], normalized: 'hide' },
|
|
82
|
+
transition: { primary: 'transición', alternatives: ['animar'], normalized: 'transition' },
|
|
83
|
+
// Events
|
|
84
|
+
on: { primary: 'en', alternatives: ['cuando', 'al'], normalized: 'on' },
|
|
85
|
+
trigger: { primary: 'disparar', alternatives: ['activar'], normalized: 'trigger' },
|
|
86
|
+
send: { primary: 'enviar', normalized: 'send' },
|
|
87
|
+
// DOM focus
|
|
88
|
+
focus: { primary: 'enfocar', normalized: 'focus' },
|
|
89
|
+
blur: { primary: 'desenfocar', normalized: 'blur' },
|
|
90
|
+
// Navigation
|
|
91
|
+
go: { primary: 'ir', alternatives: ['navegar'], normalized: 'go' },
|
|
92
|
+
// Async
|
|
93
|
+
wait: { primary: 'esperar', normalized: 'wait' },
|
|
94
|
+
fetch: { primary: 'buscar', alternatives: ['obtener'], normalized: 'fetch' },
|
|
95
|
+
settle: { primary: 'estabilizar', normalized: 'settle' },
|
|
96
|
+
// Control flow
|
|
97
|
+
if: { primary: 'si', normalized: 'if' },
|
|
98
|
+
when: { primary: 'cuando', normalized: 'when' },
|
|
99
|
+
where: { primary: 'donde', normalized: 'where' },
|
|
100
|
+
else: { primary: 'sino', alternatives: ['de lo contrario'], normalized: 'else' },
|
|
101
|
+
repeat: { primary: 'repetir', normalized: 'repeat' },
|
|
102
|
+
for: { primary: 'para', normalized: 'for' },
|
|
103
|
+
while: { primary: 'mientras', normalized: 'while' },
|
|
104
|
+
continue: { primary: 'continuar', normalized: 'continue' },
|
|
105
|
+
halt: { primary: 'detener', alternatives: ['parar'], normalized: 'halt' },
|
|
106
|
+
throw: { primary: 'lanzar', alternatives: ['arrojar'], normalized: 'throw' },
|
|
107
|
+
call: { primary: 'llamar', normalized: 'call' },
|
|
108
|
+
return: { primary: 'retornar', alternatives: ['devolver'], normalized: 'return' },
|
|
109
|
+
then: { primary: 'entonces', alternatives: ['luego', 'después'], normalized: 'then' },
|
|
110
|
+
and: { primary: 'y', alternatives: ['además', 'también'], normalized: 'and' },
|
|
111
|
+
end: { primary: 'fin', alternatives: ['final', 'terminar'], normalized: 'end' },
|
|
112
|
+
// Advanced
|
|
113
|
+
js: { primary: 'js', normalized: 'js' },
|
|
114
|
+
async: { primary: 'asíncrono', normalized: 'async' },
|
|
115
|
+
tell: { primary: 'decir', normalized: 'tell' },
|
|
116
|
+
default: { primary: 'predeterminar', alternatives: ['por defecto'], normalized: 'default' },
|
|
117
|
+
init: { primary: 'iniciar', alternatives: ['inicializar'], normalized: 'init' },
|
|
118
|
+
behavior: { primary: 'comportamiento', normalized: 'behavior' },
|
|
119
|
+
install: { primary: 'instalar', normalized: 'install' },
|
|
120
|
+
measure: { primary: 'medir', normalized: 'measure' },
|
|
121
|
+
// Modifiers
|
|
122
|
+
into: { primary: 'en', alternatives: ['dentro de'], normalized: 'into' },
|
|
123
|
+
before: { primary: 'antes', normalized: 'before' },
|
|
124
|
+
after: { primary: 'después', normalized: 'after' },
|
|
125
|
+
// Event modifiers (for repeat until event)
|
|
126
|
+
until: { primary: 'hasta', normalized: 'until' },
|
|
127
|
+
event: { primary: 'evento', normalized: 'event' },
|
|
128
|
+
from: { primary: 'de', alternatives: ['desde'], normalized: 'from' },
|
|
129
|
+
},
|
|
130
|
+
};
|
|
@@ -0,0 +1,129 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Swahili Language Profile
|
|
3
|
+
*
|
|
4
|
+
* SVO word order, prepositions, space-separated, agglutinative.
|
|
5
|
+
* Features noun class system (18 classes) and verb agreement prefixes.
|
|
6
|
+
*/
|
|
7
|
+
|
|
8
|
+
import type { LanguageProfile } from './types';
|
|
9
|
+
|
|
10
|
+
export const swahiliProfile: LanguageProfile = {
|
|
11
|
+
code: 'sw',
|
|
12
|
+
name: 'Swahili',
|
|
13
|
+
nativeName: 'Kiswahili',
|
|
14
|
+
direction: 'ltr',
|
|
15
|
+
wordOrder: 'SVO',
|
|
16
|
+
markingStrategy: 'preposition',
|
|
17
|
+
usesSpaces: true,
|
|
18
|
+
verb: {
|
|
19
|
+
position: 'start',
|
|
20
|
+
subjectDrop: true,
|
|
21
|
+
},
|
|
22
|
+
references: {
|
|
23
|
+
me: 'mimi', // "I/me"
|
|
24
|
+
it: 'hiyo', // "it"
|
|
25
|
+
you: 'wewe', // "you"
|
|
26
|
+
result: 'matokeo',
|
|
27
|
+
event: 'tukio',
|
|
28
|
+
target: 'lengo',
|
|
29
|
+
body: 'mwili',
|
|
30
|
+
},
|
|
31
|
+
possessive: {
|
|
32
|
+
marker: '', // Swahili uses possessive pronouns
|
|
33
|
+
markerPosition: 'after-object',
|
|
34
|
+
usePossessiveAdjectives: true,
|
|
35
|
+
specialForms: {
|
|
36
|
+
me: 'yangu', // "my" (class-dependent: wangu/yangu/langu...)
|
|
37
|
+
it: 'yake', // "its"
|
|
38
|
+
you: 'yako', // "your"
|
|
39
|
+
},
|
|
40
|
+
keywords: {
|
|
41
|
+
// "my" variants (noun class dependent)
|
|
42
|
+
wangu: 'me', // M-Wa class (people)
|
|
43
|
+
yangu: 'me', // N class (general)
|
|
44
|
+
langu: 'me', // Ji-Ma class
|
|
45
|
+
changu: 'me', // Ki-Vi class
|
|
46
|
+
// "your" variants
|
|
47
|
+
wako: 'you',
|
|
48
|
+
yako: 'you',
|
|
49
|
+
lako: 'you',
|
|
50
|
+
chako: 'you',
|
|
51
|
+
// "its/his/her" variants
|
|
52
|
+
wake: 'it',
|
|
53
|
+
yake: 'it',
|
|
54
|
+
lake: 'it',
|
|
55
|
+
chake: 'it',
|
|
56
|
+
},
|
|
57
|
+
},
|
|
58
|
+
roleMarkers: {
|
|
59
|
+
destination: { primary: 'kwenye', alternatives: ['kwa'], position: 'before' },
|
|
60
|
+
source: { primary: 'kutoka', position: 'before' },
|
|
61
|
+
patient: { primary: '', position: 'before' },
|
|
62
|
+
style: { primary: 'na', position: 'before' },
|
|
63
|
+
},
|
|
64
|
+
keywords: {
|
|
65
|
+
toggle: { primary: 'badilisha', alternatives: ['geuza'], normalized: 'toggle' },
|
|
66
|
+
add: { primary: 'ongeza', alternatives: ['weka'], normalized: 'add' },
|
|
67
|
+
remove: { primary: 'ondoa', alternatives: ['futa', 'toa'], normalized: 'remove' },
|
|
68
|
+
put: { primary: 'weka', alternatives: ['tia'], normalized: 'put' },
|
|
69
|
+
append: { primary: 'ambatanisha', normalized: 'append' },
|
|
70
|
+
prepend: { primary: 'tanguliza', normalized: 'prepend' },
|
|
71
|
+
take: { primary: 'chukua', normalized: 'take' },
|
|
72
|
+
make: { primary: 'tengeneza', alternatives: ['unda'], normalized: 'make' },
|
|
73
|
+
clone: { primary: 'nakili', alternatives: ['rudufu'], normalized: 'clone' },
|
|
74
|
+
swap: { primary: 'badilisha', alternatives: ['badalisha'], normalized: 'swap' },
|
|
75
|
+
morph: { primary: 'geuza', alternatives: ['badilisha umbo'], normalized: 'morph' },
|
|
76
|
+
set: { primary: 'weka', alternatives: ['seti'], normalized: 'set' },
|
|
77
|
+
get: { primary: 'pata', alternatives: ['pokea'], normalized: 'get' },
|
|
78
|
+
increment: { primary: 'ongeza', normalized: 'increment' },
|
|
79
|
+
decrement: { primary: 'punguza', normalized: 'decrement' },
|
|
80
|
+
log: { primary: 'andika', alternatives: ['rekodi'], normalized: 'log' },
|
|
81
|
+
show: { primary: 'onyesha', normalized: 'show' },
|
|
82
|
+
hide: { primary: 'ficha', alternatives: ['mficho'], normalized: 'hide' },
|
|
83
|
+
transition: { primary: 'hamisha', alternatives: ['animisha'], normalized: 'transition' },
|
|
84
|
+
on: { primary: 'wakati', alternatives: ['kwenye', 'unapo'], normalized: 'on' },
|
|
85
|
+
trigger: { primary: 'chochea', alternatives: ['anzisha'], normalized: 'trigger' },
|
|
86
|
+
send: { primary: 'tuma', alternatives: ['peleka'], normalized: 'send' },
|
|
87
|
+
focus: { primary: 'lenga', alternatives: ['angazia'], normalized: 'focus' },
|
|
88
|
+
blur: { primary: 'blur', normalized: 'blur' },
|
|
89
|
+
go: { primary: 'nenda', alternatives: ['enda', 'elekea'], normalized: 'go' },
|
|
90
|
+
wait: { primary: 'subiri', alternatives: ['ngoja'], normalized: 'wait' },
|
|
91
|
+
fetch: { primary: 'leta', alternatives: ['pakia'], normalized: 'fetch' },
|
|
92
|
+
settle: { primary: 'tulia', alternatives: ['imarika'], normalized: 'settle' },
|
|
93
|
+
if: { primary: 'kama', alternatives: ['ikiwa'], normalized: 'if' },
|
|
94
|
+
when: { primary: 'wakati', normalized: 'when' },
|
|
95
|
+
where: { primary: 'wapi', normalized: 'where' },
|
|
96
|
+
else: { primary: 'vinginevyo', alternatives: ['sivyo'], normalized: 'else' },
|
|
97
|
+
repeat: { primary: 'rudia', normalized: 'repeat' },
|
|
98
|
+
for: { primary: 'kwa', normalized: 'for' },
|
|
99
|
+
while: { primary: 'wakati', normalized: 'while' },
|
|
100
|
+
continue: { primary: 'endelea', normalized: 'continue' },
|
|
101
|
+
halt: { primary: 'simama', alternatives: ['acha'], normalized: 'halt' },
|
|
102
|
+
throw: { primary: 'tupa', normalized: 'throw' },
|
|
103
|
+
call: { primary: 'ita', normalized: 'call' },
|
|
104
|
+
return: { primary: 'rudisha', alternatives: ['rejea'], normalized: 'return' },
|
|
105
|
+
then: { primary: 'kisha', alternatives: ['halafu', 'baadaye'], normalized: 'then' },
|
|
106
|
+
and: { primary: 'na', alternatives: ['pia', 'vilevile'], normalized: 'and' },
|
|
107
|
+
end: { primary: 'mwisho', alternatives: ['maliza', 'tamati'], normalized: 'end' },
|
|
108
|
+
js: { primary: 'js', alternatives: ['javascript'], normalized: 'js' },
|
|
109
|
+
async: { primary: 'isiyo sawia', normalized: 'async' },
|
|
110
|
+
tell: { primary: 'sema', alternatives: ['ambia'], normalized: 'tell' },
|
|
111
|
+
default: { primary: 'chaguo-msingi', normalized: 'default' },
|
|
112
|
+
init: { primary: 'anzisha', alternatives: ['anza'], normalized: 'init' },
|
|
113
|
+
behavior: { primary: 'tabia', normalized: 'behavior' },
|
|
114
|
+
install: { primary: 'weka', alternatives: ['sakinisha'], normalized: 'install' },
|
|
115
|
+
measure: { primary: 'pima', normalized: 'measure' },
|
|
116
|
+
into: { primary: 'ndani', normalized: 'into' },
|
|
117
|
+
before: { primary: 'kabla', normalized: 'before' },
|
|
118
|
+
after: { primary: 'baada', normalized: 'after' },
|
|
119
|
+
// Event modifiers (for repeat until event)
|
|
120
|
+
until: { primary: 'hadi', normalized: 'until' },
|
|
121
|
+
event: { primary: 'tukio', normalized: 'event' },
|
|
122
|
+
from: { primary: 'kutoka', normalized: 'from' },
|
|
123
|
+
},
|
|
124
|
+
eventHandler: {
|
|
125
|
+
keyword: { primary: 'wakati', alternatives: ['kwenye', 'kwa'] },
|
|
126
|
+
sourceMarker: { primary: 'kutoka', position: 'before' },
|
|
127
|
+
conditionalKeyword: { primary: 'unapo', alternatives: ['anapo', 'tunapo', 'mnapo', 'wanapo'] },
|
|
128
|
+
},
|
|
129
|
+
};
|
|
@@ -0,0 +1,132 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Thai Language Profile
|
|
3
|
+
*
|
|
4
|
+
* SVO word order, prepositions, Thai script.
|
|
5
|
+
* Isolating language (like Chinese) with no inflection.
|
|
6
|
+
*/
|
|
7
|
+
|
|
8
|
+
import type { LanguageProfile } from './types';
|
|
9
|
+
|
|
10
|
+
export const thaiProfile: LanguageProfile = {
|
|
11
|
+
code: 'th',
|
|
12
|
+
name: 'Thai',
|
|
13
|
+
nativeName: 'ไทย',
|
|
14
|
+
direction: 'ltr',
|
|
15
|
+
wordOrder: 'SVO',
|
|
16
|
+
markingStrategy: 'preposition',
|
|
17
|
+
usesSpaces: false, // Thai doesn't use spaces between words
|
|
18
|
+
defaultVerbForm: 'base',
|
|
19
|
+
verb: {
|
|
20
|
+
position: 'second',
|
|
21
|
+
subjectDrop: true,
|
|
22
|
+
},
|
|
23
|
+
references: {
|
|
24
|
+
me: 'ฉัน',
|
|
25
|
+
it: 'มัน',
|
|
26
|
+
you: 'คุณ',
|
|
27
|
+
result: 'ผลลัพธ์',
|
|
28
|
+
event: 'เหตุการณ์',
|
|
29
|
+
target: 'เป้าหมาย',
|
|
30
|
+
body: 'บอดี้',
|
|
31
|
+
},
|
|
32
|
+
possessive: {
|
|
33
|
+
marker: 'ของ',
|
|
34
|
+
markerPosition: 'between',
|
|
35
|
+
keywords: {
|
|
36
|
+
// Thai uses ของ (khong) + pronoun, but also full possessive phrases
|
|
37
|
+
// "my" - ของฉัน (khong chan), ของผม (khong phom, male speaker)
|
|
38
|
+
ของฉัน: 'me',
|
|
39
|
+
ของผม: 'me',
|
|
40
|
+
// "your" - ของคุณ (khong khun)
|
|
41
|
+
ของคุณ: 'you',
|
|
42
|
+
// "its/his/her" - ของมัน (khong man)
|
|
43
|
+
ของมัน: 'it',
|
|
44
|
+
ของเขา: 'it', // his
|
|
45
|
+
ของเธอ: 'it', // her
|
|
46
|
+
},
|
|
47
|
+
},
|
|
48
|
+
roleMarkers: {
|
|
49
|
+
patient: { primary: '', position: 'before' }, // Thai is isolating - no case markers
|
|
50
|
+
destination: { primary: 'ใน', alternatives: ['ไปยัง'], position: 'before' },
|
|
51
|
+
source: { primary: 'จาก', position: 'before' },
|
|
52
|
+
style: { primary: 'ด้วย', position: 'before' },
|
|
53
|
+
event: { primary: 'เมื่อ', position: 'before' },
|
|
54
|
+
},
|
|
55
|
+
keywords: {
|
|
56
|
+
// Class/Attribute operations
|
|
57
|
+
toggle: { primary: 'สลับ', alternatives: [], normalized: 'toggle' },
|
|
58
|
+
add: { primary: 'เพิ่ม', alternatives: [], normalized: 'add' },
|
|
59
|
+
remove: { primary: 'ลบ', alternatives: ['ลบออก'], normalized: 'remove' },
|
|
60
|
+
// Content operations
|
|
61
|
+
put: { primary: 'ใส่', alternatives: ['วาง'], normalized: 'put' },
|
|
62
|
+
append: { primary: 'เพิ่มท้าย', alternatives: [], normalized: 'append' },
|
|
63
|
+
prepend: { primary: 'เพิ่มหน้า', alternatives: [], normalized: 'prepend' },
|
|
64
|
+
take: { primary: 'รับ', alternatives: [], normalized: 'take' },
|
|
65
|
+
make: { primary: 'สร้าง', alternatives: [], normalized: 'make' },
|
|
66
|
+
clone: { primary: 'คัดลอก', alternatives: ['สำเนา'], normalized: 'clone' },
|
|
67
|
+
swap: { primary: 'สลับที่', alternatives: [], normalized: 'swap' },
|
|
68
|
+
morph: { primary: 'แปลงร่าง', alternatives: [], normalized: 'morph' },
|
|
69
|
+
// Variable operations
|
|
70
|
+
set: { primary: 'ตั้ง', alternatives: ['กำหนด'], normalized: 'set' },
|
|
71
|
+
get: { primary: 'รับค่า', alternatives: [], normalized: 'get' },
|
|
72
|
+
increment: { primary: 'เพิ่มค่า', alternatives: [], normalized: 'increment' },
|
|
73
|
+
decrement: { primary: 'ลดค่า', alternatives: [], normalized: 'decrement' },
|
|
74
|
+
log: { primary: 'บันทึก', alternatives: [], normalized: 'log' },
|
|
75
|
+
// Visibility
|
|
76
|
+
show: { primary: 'แสดง', alternatives: [], normalized: 'show' },
|
|
77
|
+
hide: { primary: 'ซ่อน', alternatives: [], normalized: 'hide' },
|
|
78
|
+
transition: { primary: 'เปลี่ยน', alternatives: [], normalized: 'transition' },
|
|
79
|
+
// Events
|
|
80
|
+
on: { primary: 'เมื่อ', alternatives: ['ตอน'], normalized: 'on' },
|
|
81
|
+
trigger: { primary: 'ทริกเกอร์', alternatives: [], normalized: 'trigger' },
|
|
82
|
+
send: { primary: 'ส่ง', alternatives: [], normalized: 'send' },
|
|
83
|
+
// DOM focus
|
|
84
|
+
focus: { primary: 'โฟกัส', alternatives: [], normalized: 'focus' },
|
|
85
|
+
blur: { primary: 'เบลอ', alternatives: [], normalized: 'blur' },
|
|
86
|
+
// Navigation
|
|
87
|
+
go: { primary: 'ไป', alternatives: ['ไปที่'], normalized: 'go' },
|
|
88
|
+
// Async
|
|
89
|
+
wait: { primary: 'รอ', alternatives: [], normalized: 'wait' },
|
|
90
|
+
fetch: { primary: 'ดึงข้อมูล', alternatives: [], normalized: 'fetch' },
|
|
91
|
+
settle: { primary: 'คงที่', alternatives: [], normalized: 'settle' },
|
|
92
|
+
// Control flow
|
|
93
|
+
if: { primary: 'ถ้า', alternatives: ['หาก'], normalized: 'if' },
|
|
94
|
+
when: { primary: 'เมื่อ', normalized: 'when' },
|
|
95
|
+
where: { primary: 'ที่ไหน', normalized: 'where' },
|
|
96
|
+
else: { primary: 'ไม่งั้น', alternatives: ['ไม่เช่นนั้น'], normalized: 'else' },
|
|
97
|
+
repeat: { primary: 'ทำซ้ำ', alternatives: [], normalized: 'repeat' },
|
|
98
|
+
for: { primary: 'สำหรับ', alternatives: [], normalized: 'for' },
|
|
99
|
+
while: { primary: 'ในขณะที่', alternatives: [], normalized: 'while' },
|
|
100
|
+
continue: { primary: 'ต่อไป', alternatives: [], normalized: 'continue' },
|
|
101
|
+
halt: { primary: 'หยุด', alternatives: [], normalized: 'halt' },
|
|
102
|
+
throw: { primary: 'โยน', alternatives: [], normalized: 'throw' },
|
|
103
|
+
call: { primary: 'เรียก', alternatives: [], normalized: 'call' },
|
|
104
|
+
return: { primary: 'คืนค่า', alternatives: ['กลับ'], normalized: 'return' },
|
|
105
|
+
then: { primary: 'แล้ว', alternatives: [], normalized: 'then' },
|
|
106
|
+
and: { primary: 'และ', alternatives: [], normalized: 'and' },
|
|
107
|
+
end: { primary: 'จบ', alternatives: [], normalized: 'end' },
|
|
108
|
+
// Advanced
|
|
109
|
+
js: { primary: 'เจเอส', alternatives: ['js'], normalized: 'js' },
|
|
110
|
+
async: { primary: 'อะซิงค์', alternatives: [], normalized: 'async' },
|
|
111
|
+
tell: { primary: 'บอก', alternatives: [], normalized: 'tell' },
|
|
112
|
+
default: { primary: 'ค่าเริ่มต้น', alternatives: [], normalized: 'default' },
|
|
113
|
+
init: { primary: 'เริ่มต้น', alternatives: [], normalized: 'init' },
|
|
114
|
+
behavior: { primary: 'พฤติกรรม', alternatives: [], normalized: 'behavior' },
|
|
115
|
+
install: { primary: 'ติดตั้ง', alternatives: [], normalized: 'install' },
|
|
116
|
+
measure: { primary: 'วัด', alternatives: [], normalized: 'measure' },
|
|
117
|
+
// Modifiers
|
|
118
|
+
into: { primary: 'ใน', alternatives: [], normalized: 'into' },
|
|
119
|
+
before: { primary: 'ก่อน', alternatives: [], normalized: 'before' },
|
|
120
|
+
after: { primary: 'หลัง', alternatives: [], normalized: 'after' },
|
|
121
|
+
until: { primary: 'จนถึง', alternatives: [], normalized: 'until' },
|
|
122
|
+
event: { primary: 'เหตุการณ์', alternatives: [], normalized: 'event' },
|
|
123
|
+
from: { primary: 'จาก', normalized: 'from' },
|
|
124
|
+
},
|
|
125
|
+
tokenization: {
|
|
126
|
+
boundaryStrategy: 'character', // Character-based like Chinese/Japanese
|
|
127
|
+
},
|
|
128
|
+
eventHandler: {
|
|
129
|
+
keyword: { primary: 'เมื่อ', alternatives: ['ตอน'], normalized: 'on' },
|
|
130
|
+
sourceMarker: { primary: 'จาก', position: 'before' },
|
|
131
|
+
},
|
|
132
|
+
};
|