@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,132 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Bengali Language Profile
|
|
3
|
+
*
|
|
4
|
+
* SOV word order, postpositions (কে, তে, থেকে, etc.), Bengali script.
|
|
5
|
+
* Agglutinative language similar to Hindi.
|
|
6
|
+
*/
|
|
7
|
+
|
|
8
|
+
import type { LanguageProfile } from './types';
|
|
9
|
+
|
|
10
|
+
export const bengaliProfile: LanguageProfile = {
|
|
11
|
+
code: 'bn',
|
|
12
|
+
name: 'Bengali',
|
|
13
|
+
nativeName: 'বাংলা',
|
|
14
|
+
direction: 'ltr',
|
|
15
|
+
wordOrder: 'SOV',
|
|
16
|
+
markingStrategy: 'postposition',
|
|
17
|
+
usesSpaces: true,
|
|
18
|
+
defaultVerbForm: 'imperative',
|
|
19
|
+
verb: {
|
|
20
|
+
position: 'end',
|
|
21
|
+
suffixes: ['ুন', 'ো', 'া', 'ে', 'ি'],
|
|
22
|
+
subjectDrop: true,
|
|
23
|
+
},
|
|
24
|
+
references: {
|
|
25
|
+
me: 'আমি',
|
|
26
|
+
it: 'এটি',
|
|
27
|
+
you: 'আপনি',
|
|
28
|
+
result: 'ফলাফল',
|
|
29
|
+
event: 'ঘটনা',
|
|
30
|
+
target: 'লক্ষ্য',
|
|
31
|
+
body: 'বডি',
|
|
32
|
+
},
|
|
33
|
+
possessive: {
|
|
34
|
+
marker: 'র',
|
|
35
|
+
markerPosition: 'between',
|
|
36
|
+
keywords: {
|
|
37
|
+
// "my" - আমার (amar)
|
|
38
|
+
আমার: 'me',
|
|
39
|
+
// "your" - তোমার (tomar, informal), আপনার (apnar, formal)
|
|
40
|
+
তোমার: 'you',
|
|
41
|
+
আপনার: 'you',
|
|
42
|
+
// "its/his/her" - তার (tar), এর (er)
|
|
43
|
+
তার: 'it',
|
|
44
|
+
এর: 'it',
|
|
45
|
+
},
|
|
46
|
+
},
|
|
47
|
+
roleMarkers: {
|
|
48
|
+
patient: { primary: 'কে', position: 'after' },
|
|
49
|
+
destination: { primary: 'তে', alternatives: ['এ'], position: 'after' },
|
|
50
|
+
source: { primary: 'থেকে', position: 'after' },
|
|
51
|
+
style: { primary: 'দিয়ে', position: 'after' },
|
|
52
|
+
event: { primary: 'তে', position: 'after' },
|
|
53
|
+
},
|
|
54
|
+
keywords: {
|
|
55
|
+
// Class/Attribute operations
|
|
56
|
+
toggle: { primary: 'টগল', alternatives: ['পরিবর্তন'], normalized: 'toggle' },
|
|
57
|
+
add: { primary: 'যোগ', alternatives: ['যোগ করুন'], normalized: 'add' },
|
|
58
|
+
remove: { primary: 'সরান', alternatives: ['সরিয়ে ফেলুন', 'মুছুন'], normalized: 'remove' },
|
|
59
|
+
// Content operations
|
|
60
|
+
put: { primary: 'রাখুন', alternatives: ['রাখ'], normalized: 'put' },
|
|
61
|
+
append: { primary: 'শেষে যোগ', alternatives: [], normalized: 'append' },
|
|
62
|
+
prepend: { primary: 'শুরুতে যোগ', alternatives: [], normalized: 'prepend' },
|
|
63
|
+
take: { primary: 'নিন', alternatives: ['নে'], normalized: 'take' },
|
|
64
|
+
make: { primary: 'তৈরি করুন', alternatives: ['বানান'], normalized: 'make' },
|
|
65
|
+
clone: { primary: 'কপি', alternatives: ['প্রতিলিপি'], normalized: 'clone' },
|
|
66
|
+
swap: { primary: 'বদল', alternatives: [], normalized: 'swap' },
|
|
67
|
+
morph: { primary: 'রূপান্তর', alternatives: [], normalized: 'morph' },
|
|
68
|
+
// Variable operations
|
|
69
|
+
set: { primary: 'সেট', alternatives: ['নির্ধারণ'], normalized: 'set' },
|
|
70
|
+
get: { primary: 'পান', alternatives: ['নিন'], normalized: 'get' },
|
|
71
|
+
increment: { primary: 'বৃদ্ধি', alternatives: ['বাড়ান'], normalized: 'increment' },
|
|
72
|
+
decrement: { primary: 'হ্রাস', alternatives: ['কমান'], normalized: 'decrement' },
|
|
73
|
+
log: { primary: 'লগ', alternatives: ['রেকর্ড'], normalized: 'log' },
|
|
74
|
+
// Visibility
|
|
75
|
+
show: { primary: 'দেখান', alternatives: ['দেখাও'], normalized: 'show' },
|
|
76
|
+
hide: { primary: 'লুকান', alternatives: ['লুকাও'], normalized: 'hide' },
|
|
77
|
+
transition: { primary: 'সংক্রমণ', alternatives: [], normalized: 'transition' },
|
|
78
|
+
// Events
|
|
79
|
+
on: { primary: 'তে', alternatives: ['এ', 'যখন'], normalized: 'on' },
|
|
80
|
+
trigger: { primary: 'ট্রিগার', alternatives: [], normalized: 'trigger' },
|
|
81
|
+
send: { primary: 'পাঠান', alternatives: ['পাঠাও'], normalized: 'send' },
|
|
82
|
+
// DOM focus
|
|
83
|
+
focus: { primary: 'ফোকাস', alternatives: ['মনোযোগ'], normalized: 'focus' },
|
|
84
|
+
blur: { primary: 'ঝাপসা', alternatives: [], normalized: 'blur' },
|
|
85
|
+
// Navigation
|
|
86
|
+
go: { primary: 'যান', alternatives: ['যাও'], normalized: 'go' },
|
|
87
|
+
// Async
|
|
88
|
+
wait: { primary: 'অপেক্ষা', alternatives: ['থামুন'], normalized: 'wait' },
|
|
89
|
+
fetch: { primary: 'আনুন', alternatives: [], normalized: 'fetch' },
|
|
90
|
+
settle: { primary: 'স্থির', alternatives: [], normalized: 'settle' },
|
|
91
|
+
// Control flow
|
|
92
|
+
if: { primary: 'যদি', alternatives: [], normalized: 'if' },
|
|
93
|
+
when: { primary: 'যখন', normalized: 'when' },
|
|
94
|
+
where: { primary: 'কোথায়', normalized: 'where' },
|
|
95
|
+
else: { primary: 'নতুবা', alternatives: ['না হলে'], normalized: 'else' },
|
|
96
|
+
repeat: { primary: 'পুনরাবৃত্তি', alternatives: ['বার বার'], normalized: 'repeat' },
|
|
97
|
+
for: { primary: 'জন্য', alternatives: [], normalized: 'for' },
|
|
98
|
+
while: { primary: 'যতক্ষণ', alternatives: [], normalized: 'while' },
|
|
99
|
+
continue: { primary: 'চালিয়ে যান', alternatives: [], normalized: 'continue' },
|
|
100
|
+
halt: { primary: 'থামুন', alternatives: ['থামাও'], normalized: 'halt' },
|
|
101
|
+
throw: { primary: 'নিক্ষেপ', alternatives: ['ছুঁড়ে দিন'], normalized: 'throw' },
|
|
102
|
+
call: { primary: 'কল', alternatives: ['ডাকুন'], normalized: 'call' },
|
|
103
|
+
return: { primary: 'ফিরুন', alternatives: ['ফেরত দিন'], normalized: 'return' },
|
|
104
|
+
then: { primary: 'তারপর', alternatives: ['তখন'], normalized: 'then' },
|
|
105
|
+
and: { primary: 'এবং', alternatives: [], normalized: 'and' },
|
|
106
|
+
end: { primary: 'শেষ', alternatives: ['সমাপ্ত'], normalized: 'end' },
|
|
107
|
+
// Advanced
|
|
108
|
+
js: { primary: 'জেএস', alternatives: ['js'], normalized: 'js' },
|
|
109
|
+
async: { primary: 'অ্যাসিঙ্ক', alternatives: [], normalized: 'async' },
|
|
110
|
+
tell: { primary: 'বলুন', alternatives: ['বল'], normalized: 'tell' },
|
|
111
|
+
default: { primary: 'ডিফল্ট', alternatives: [], normalized: 'default' },
|
|
112
|
+
init: { primary: 'শুরু', alternatives: [], normalized: 'init' },
|
|
113
|
+
behavior: { primary: 'আচরণ', alternatives: [], normalized: 'behavior' },
|
|
114
|
+
install: { primary: 'ইনস্টল', alternatives: [], normalized: 'install' },
|
|
115
|
+
measure: { primary: 'মাপুন', alternatives: [], normalized: 'measure' },
|
|
116
|
+
// Modifiers
|
|
117
|
+
into: { primary: 'তে', alternatives: ['এ'], normalized: 'into' },
|
|
118
|
+
before: { primary: 'আগে', alternatives: [], normalized: 'before' },
|
|
119
|
+
after: { primary: 'পরে', alternatives: [], normalized: 'after' },
|
|
120
|
+
until: { primary: 'পর্যন্ত', alternatives: [], normalized: 'until' },
|
|
121
|
+
event: { primary: 'ঘটনা', alternatives: [], normalized: 'event' },
|
|
122
|
+
from: { primary: 'থেকে', normalized: 'from' },
|
|
123
|
+
},
|
|
124
|
+
tokenization: {
|
|
125
|
+
particles: ['কে', 'তে', 'থেকে', 'র', 'এর', 'দিয়ে', 'জন্য', 'পর্যন্ত'],
|
|
126
|
+
boundaryStrategy: 'space',
|
|
127
|
+
},
|
|
128
|
+
eventHandler: {
|
|
129
|
+
keyword: { primary: 'তে', alternatives: ['এ', 'যখন'], normalized: 'on' },
|
|
130
|
+
sourceMarker: { primary: 'থেকে', position: 'after' },
|
|
131
|
+
},
|
|
132
|
+
};
|
|
@@ -0,0 +1,124 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Chinese (Simplified) Language Profile
|
|
3
|
+
*
|
|
4
|
+
* SVO word order, no markers (relies on word order), no spaces between words.
|
|
5
|
+
* Isolating language with topic-comment structure and optional BA construction.
|
|
6
|
+
*/
|
|
7
|
+
|
|
8
|
+
import type { LanguageProfile } from './types';
|
|
9
|
+
|
|
10
|
+
export const chineseProfile: LanguageProfile = {
|
|
11
|
+
code: 'zh',
|
|
12
|
+
name: 'Chinese',
|
|
13
|
+
nativeName: '中文',
|
|
14
|
+
direction: 'ltr',
|
|
15
|
+
wordOrder: 'SVO',
|
|
16
|
+
markingStrategy: 'preposition', // Uses prepositions but often implicit
|
|
17
|
+
usesSpaces: false,
|
|
18
|
+
verb: {
|
|
19
|
+
position: 'second',
|
|
20
|
+
subjectDrop: true,
|
|
21
|
+
},
|
|
22
|
+
references: {
|
|
23
|
+
me: '我', // "I/me"
|
|
24
|
+
it: '它', // "it"
|
|
25
|
+
you: '你', // "you"
|
|
26
|
+
result: '结果',
|
|
27
|
+
event: '事件',
|
|
28
|
+
target: '目标',
|
|
29
|
+
body: '主体',
|
|
30
|
+
},
|
|
31
|
+
possessive: {
|
|
32
|
+
marker: '的', // Possessive particle (de)
|
|
33
|
+
markerPosition: 'between',
|
|
34
|
+
// Chinese: 我的 value (wǒ de value) = "my value"
|
|
35
|
+
keywords: {
|
|
36
|
+
// Compound possessive forms (pronoun + 的)
|
|
37
|
+
我的: 'me', // wǒ de (my)
|
|
38
|
+
你的: 'you', // nǐ de (your)
|
|
39
|
+
它的: 'it', // tā de (its)
|
|
40
|
+
他的: 'it', // tā de (his)
|
|
41
|
+
她的: 'it', // tā de (her)
|
|
42
|
+
},
|
|
43
|
+
},
|
|
44
|
+
roleMarkers: {
|
|
45
|
+
destination: { primary: '在', alternatives: ['到', '于'], position: 'before' },
|
|
46
|
+
source: { primary: '从', alternatives: ['由'], position: 'before' },
|
|
47
|
+
patient: { primary: '把', position: 'before' }, // BA construction
|
|
48
|
+
style: { primary: '用', alternatives: ['以'], position: 'before' },
|
|
49
|
+
},
|
|
50
|
+
keywords: {
|
|
51
|
+
// Class/Attribute operations
|
|
52
|
+
toggle: { primary: '切换', normalized: 'toggle' },
|
|
53
|
+
add: { primary: '添加', alternatives: ['加'], normalized: 'add' },
|
|
54
|
+
remove: { primary: '移除', alternatives: ['删除', '去掉'], normalized: 'remove' },
|
|
55
|
+
// Content operations
|
|
56
|
+
put: { primary: '放置', alternatives: ['放', '放入'], normalized: 'put' },
|
|
57
|
+
append: { primary: '追加', alternatives: ['附加'], normalized: 'append' },
|
|
58
|
+
prepend: { primary: '前置', alternatives: ['预置'], normalized: 'prepend' },
|
|
59
|
+
take: { primary: '获取', normalized: 'take' },
|
|
60
|
+
make: { primary: '制作', normalized: 'make' },
|
|
61
|
+
clone: { primary: '复制', normalized: 'clone' },
|
|
62
|
+
swap: { primary: '交换', normalized: 'swap' },
|
|
63
|
+
morph: { primary: '变形', alternatives: ['转换'], normalized: 'morph' },
|
|
64
|
+
// Variable operations
|
|
65
|
+
set: { primary: '设置', alternatives: ['设定'], normalized: 'set' },
|
|
66
|
+
get: { primary: '获得', alternatives: ['获取', '取得'], normalized: 'get' },
|
|
67
|
+
increment: { primary: '增加', normalized: 'increment' },
|
|
68
|
+
decrement: { primary: '减少', normalized: 'decrement' },
|
|
69
|
+
log: { primary: '日志', normalized: 'log' },
|
|
70
|
+
// Visibility
|
|
71
|
+
show: { primary: '显示', alternatives: ['展示'], normalized: 'show' },
|
|
72
|
+
hide: { primary: '隐藏', normalized: 'hide' },
|
|
73
|
+
transition: { primary: '过渡', normalized: 'transition' },
|
|
74
|
+
// Events
|
|
75
|
+
on: { primary: '当', alternatives: ['在...时'], normalized: 'on' },
|
|
76
|
+
trigger: { primary: '触发', normalized: 'trigger' },
|
|
77
|
+
send: { primary: '发送', normalized: 'send' },
|
|
78
|
+
// DOM focus
|
|
79
|
+
focus: { primary: '聚焦', normalized: 'focus' },
|
|
80
|
+
blur: { primary: '失焦', normalized: 'blur' },
|
|
81
|
+
// Navigation
|
|
82
|
+
go: { primary: '前往', normalized: 'go' },
|
|
83
|
+
// Async
|
|
84
|
+
wait: { primary: '等待', normalized: 'wait' },
|
|
85
|
+
fetch: { primary: '获取', normalized: 'fetch' },
|
|
86
|
+
settle: { primary: '稳定', normalized: 'settle' },
|
|
87
|
+
// Control flow
|
|
88
|
+
if: { primary: '如果', normalized: 'if' },
|
|
89
|
+
when: { primary: '当', normalized: 'when' },
|
|
90
|
+
where: { primary: '哪里', normalized: 'where' },
|
|
91
|
+
else: { primary: '否则', normalized: 'else' },
|
|
92
|
+
repeat: { primary: '重复', normalized: 'repeat' },
|
|
93
|
+
for: { primary: '为', normalized: 'for' },
|
|
94
|
+
while: { primary: '当', normalized: 'while' },
|
|
95
|
+
continue: { primary: '继续', normalized: 'continue' },
|
|
96
|
+
halt: { primary: '停止', normalized: 'halt' },
|
|
97
|
+
throw: { primary: '抛出', normalized: 'throw' },
|
|
98
|
+
call: { primary: '调用', normalized: 'call' },
|
|
99
|
+
return: { primary: '返回', normalized: 'return' },
|
|
100
|
+
then: { primary: '然后', alternatives: ['接着', '之后'], normalized: 'then' },
|
|
101
|
+
and: { primary: '并且', alternatives: ['和', '而且'], normalized: 'and' },
|
|
102
|
+
end: { primary: '结束', alternatives: ['终止', '完'], normalized: 'end' },
|
|
103
|
+
// Advanced
|
|
104
|
+
js: { primary: 'JS执行', alternatives: ['js'], normalized: 'js' },
|
|
105
|
+
async: { primary: '异步', normalized: 'async' },
|
|
106
|
+
tell: { primary: '告诉', normalized: 'tell' },
|
|
107
|
+
default: { primary: '默认', normalized: 'default' },
|
|
108
|
+
init: { primary: '初始化', normalized: 'init' },
|
|
109
|
+
behavior: { primary: '行为', normalized: 'behavior' },
|
|
110
|
+
install: { primary: '安装', normalized: 'install' },
|
|
111
|
+
measure: { primary: '测量', normalized: 'measure' },
|
|
112
|
+
// Modifiers
|
|
113
|
+
into: { primary: '进入', normalized: 'into' },
|
|
114
|
+
before: { primary: '之前', normalized: 'before' },
|
|
115
|
+
after: { primary: '之后', normalized: 'after' },
|
|
116
|
+
// Event modifiers (for repeat until event)
|
|
117
|
+
until: { primary: '直到', normalized: 'until' },
|
|
118
|
+
event: { primary: '事件', normalized: 'event' },
|
|
119
|
+
from: { primary: '从', normalized: 'from' },
|
|
120
|
+
},
|
|
121
|
+
tokenization: {
|
|
122
|
+
boundaryStrategy: 'character',
|
|
123
|
+
},
|
|
124
|
+
};
|
|
@@ -0,0 +1,113 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* English Language Profile
|
|
3
|
+
*
|
|
4
|
+
* SVO word order, prepositions, space-separated.
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
import type { LanguageProfile } from './types';
|
|
8
|
+
|
|
9
|
+
export const englishProfile: LanguageProfile = {
|
|
10
|
+
code: 'en',
|
|
11
|
+
name: 'English',
|
|
12
|
+
nativeName: 'English',
|
|
13
|
+
direction: 'ltr',
|
|
14
|
+
wordOrder: 'SVO',
|
|
15
|
+
markingStrategy: 'preposition',
|
|
16
|
+
usesSpaces: true,
|
|
17
|
+
// English infinitive and imperative are identical ("toggle", "save", "open")
|
|
18
|
+
defaultVerbForm: 'base',
|
|
19
|
+
verb: {
|
|
20
|
+
position: 'start',
|
|
21
|
+
subjectDrop: false,
|
|
22
|
+
},
|
|
23
|
+
references: {
|
|
24
|
+
me: 'me',
|
|
25
|
+
it: 'it',
|
|
26
|
+
you: 'you',
|
|
27
|
+
result: 'result',
|
|
28
|
+
event: 'event',
|
|
29
|
+
target: 'target',
|
|
30
|
+
body: 'body',
|
|
31
|
+
},
|
|
32
|
+
possessive: {
|
|
33
|
+
marker: "'s",
|
|
34
|
+
markerPosition: 'after-object',
|
|
35
|
+
specialForms: {
|
|
36
|
+
me: 'my',
|
|
37
|
+
it: 'its',
|
|
38
|
+
you: 'your',
|
|
39
|
+
},
|
|
40
|
+
keywords: {
|
|
41
|
+
my: 'me',
|
|
42
|
+
your: 'you',
|
|
43
|
+
its: 'it',
|
|
44
|
+
},
|
|
45
|
+
},
|
|
46
|
+
roleMarkers: {
|
|
47
|
+
destination: { primary: 'on', alternatives: ['to', 'from'], position: 'before' },
|
|
48
|
+
source: { primary: 'from', position: 'before' },
|
|
49
|
+
patient: { primary: '', position: 'before' },
|
|
50
|
+
style: { primary: 'with', alternatives: ['by', 'using'], position: 'before' },
|
|
51
|
+
responseType: { primary: 'as', position: 'before' },
|
|
52
|
+
method: { primary: 'via', alternatives: ['using'], position: 'before' },
|
|
53
|
+
},
|
|
54
|
+
keywords: {
|
|
55
|
+
toggle: { primary: 'toggle' },
|
|
56
|
+
add: { primary: 'add' },
|
|
57
|
+
remove: { primary: 'remove' },
|
|
58
|
+
put: { primary: 'put' },
|
|
59
|
+
append: { primary: 'append' },
|
|
60
|
+
prepend: { primary: 'prepend' },
|
|
61
|
+
take: { primary: 'take' },
|
|
62
|
+
make: { primary: 'make' },
|
|
63
|
+
clone: { primary: 'clone' },
|
|
64
|
+
swap: { primary: 'swap' },
|
|
65
|
+
morph: { primary: 'morph' },
|
|
66
|
+
set: { primary: 'set' },
|
|
67
|
+
get: { primary: 'get' },
|
|
68
|
+
increment: { primary: 'increment' },
|
|
69
|
+
decrement: { primary: 'decrement' },
|
|
70
|
+
log: { primary: 'log' },
|
|
71
|
+
show: { primary: 'show' },
|
|
72
|
+
hide: { primary: 'hide' },
|
|
73
|
+
transition: { primary: 'transition' },
|
|
74
|
+
on: { primary: 'on' },
|
|
75
|
+
trigger: { primary: 'trigger' },
|
|
76
|
+
send: { primary: 'send' },
|
|
77
|
+
focus: { primary: 'focus' },
|
|
78
|
+
blur: { primary: 'blur' },
|
|
79
|
+
go: { primary: 'go' },
|
|
80
|
+
wait: { primary: 'wait' },
|
|
81
|
+
fetch: { primary: 'fetch' },
|
|
82
|
+
settle: { primary: 'settle' },
|
|
83
|
+
if: { primary: 'if' },
|
|
84
|
+
when: { primary: 'when', normalized: 'when' },
|
|
85
|
+
where: { primary: 'where', normalized: 'where' },
|
|
86
|
+
else: { primary: 'else' },
|
|
87
|
+
repeat: { primary: 'repeat' },
|
|
88
|
+
for: { primary: 'for' },
|
|
89
|
+
while: { primary: 'while' },
|
|
90
|
+
continue: { primary: 'continue' },
|
|
91
|
+
halt: { primary: 'halt' },
|
|
92
|
+
throw: { primary: 'throw' },
|
|
93
|
+
call: { primary: 'call' },
|
|
94
|
+
return: { primary: 'return' },
|
|
95
|
+
then: { primary: 'then' },
|
|
96
|
+
and: { primary: 'and' },
|
|
97
|
+
end: { primary: 'end' },
|
|
98
|
+
js: { primary: 'js' },
|
|
99
|
+
async: { primary: 'async' },
|
|
100
|
+
tell: { primary: 'tell' },
|
|
101
|
+
default: { primary: 'default' },
|
|
102
|
+
init: { primary: 'init' },
|
|
103
|
+
behavior: { primary: 'behavior' },
|
|
104
|
+
install: { primary: 'install' },
|
|
105
|
+
measure: { primary: 'measure' },
|
|
106
|
+
into: { primary: 'into' },
|
|
107
|
+
before: { primary: 'before' },
|
|
108
|
+
after: { primary: 'after' },
|
|
109
|
+
until: { primary: 'until' },
|
|
110
|
+
event: { primary: 'event' },
|
|
111
|
+
from: { primary: 'from' },
|
|
112
|
+
},
|
|
113
|
+
};
|
|
@@ -0,0 +1,125 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* French Language Profile
|
|
3
|
+
*
|
|
4
|
+
* SVO word order, prepositions, space-separated.
|
|
5
|
+
* Features rich verb conjugation and gendered articles.
|
|
6
|
+
*/
|
|
7
|
+
|
|
8
|
+
import type { LanguageProfile } from './types';
|
|
9
|
+
|
|
10
|
+
export const frenchProfile: LanguageProfile = {
|
|
11
|
+
code: 'fr',
|
|
12
|
+
name: 'French',
|
|
13
|
+
nativeName: 'Français',
|
|
14
|
+
direction: 'ltr',
|
|
15
|
+
wordOrder: 'SVO',
|
|
16
|
+
markingStrategy: 'preposition',
|
|
17
|
+
usesSpaces: true,
|
|
18
|
+
// Infinitive is standard for French software UI (Enregistrer, Ouvrir, Fermer)
|
|
19
|
+
defaultVerbForm: 'infinitive',
|
|
20
|
+
verb: {
|
|
21
|
+
position: 'start',
|
|
22
|
+
subjectDrop: false,
|
|
23
|
+
},
|
|
24
|
+
references: {
|
|
25
|
+
me: 'moi', // "I/me"
|
|
26
|
+
it: 'il', // "it"
|
|
27
|
+
you: 'toi', // "you"
|
|
28
|
+
result: 'résultat',
|
|
29
|
+
event: 'événement',
|
|
30
|
+
target: 'cible',
|
|
31
|
+
body: 'corps',
|
|
32
|
+
},
|
|
33
|
+
possessive: {
|
|
34
|
+
marker: 'de', // Uses "de" for general possession
|
|
35
|
+
markerPosition: 'before-property',
|
|
36
|
+
usePossessiveAdjectives: true,
|
|
37
|
+
specialForms: {
|
|
38
|
+
me: 'ma', // "my" (feminine; "mon" for masculine)
|
|
39
|
+
it: 'sa', // "its" (feminine; "son" for masculine)
|
|
40
|
+
you: 'ta', // "your" (feminine; "ton" for masculine)
|
|
41
|
+
},
|
|
42
|
+
keywords: {
|
|
43
|
+
mon: 'me',
|
|
44
|
+
ma: 'me',
|
|
45
|
+
mes: 'me',
|
|
46
|
+
ton: 'you',
|
|
47
|
+
ta: 'you',
|
|
48
|
+
tes: 'you',
|
|
49
|
+
son: 'it',
|
|
50
|
+
sa: 'it',
|
|
51
|
+
ses: 'it',
|
|
52
|
+
},
|
|
53
|
+
},
|
|
54
|
+
roleMarkers: {
|
|
55
|
+
destination: { primary: 'sur', alternatives: ['à', 'dans'], position: 'before' },
|
|
56
|
+
source: { primary: 'de', alternatives: ['depuis'], position: 'before' },
|
|
57
|
+
patient: { primary: '', position: 'before' },
|
|
58
|
+
style: { primary: 'avec', position: 'before' },
|
|
59
|
+
},
|
|
60
|
+
keywords: {
|
|
61
|
+
toggle: { primary: 'basculer', alternatives: ['permuter', 'alterner'], normalized: 'toggle' },
|
|
62
|
+
add: { primary: 'ajouter', normalized: 'add' },
|
|
63
|
+
remove: { primary: 'supprimer', alternatives: ['enlever', 'retirer'], normalized: 'remove' },
|
|
64
|
+
put: { primary: 'mettre', alternatives: ['placer'], normalized: 'put' },
|
|
65
|
+
append: { primary: 'annexer', normalized: 'append' },
|
|
66
|
+
prepend: { primary: 'préfixer', normalized: 'prepend' },
|
|
67
|
+
take: { primary: 'prendre', normalized: 'take' },
|
|
68
|
+
make: { primary: 'faire', alternatives: ['créer'], normalized: 'make' },
|
|
69
|
+
clone: { primary: 'cloner', alternatives: ['copier'], normalized: 'clone' },
|
|
70
|
+
swap: { primary: 'échanger', alternatives: ['permuter'], normalized: 'swap' },
|
|
71
|
+
morph: { primary: 'transformer', alternatives: ['métamorphoser'], normalized: 'morph' },
|
|
72
|
+
set: { primary: 'définir', alternatives: ['établir'], normalized: 'set' },
|
|
73
|
+
get: { primary: 'obtenir', normalized: 'get' },
|
|
74
|
+
increment: { primary: 'incrémenter', alternatives: ['augmenter'], normalized: 'increment' },
|
|
75
|
+
decrement: { primary: 'décrémenter', alternatives: ['diminuer'], normalized: 'decrement' },
|
|
76
|
+
log: { primary: 'enregistrer', alternatives: ['afficher'], normalized: 'log' },
|
|
77
|
+
show: { primary: 'montrer', alternatives: ['afficher'], normalized: 'show' },
|
|
78
|
+
hide: { primary: 'cacher', alternatives: ['masquer'], normalized: 'hide' },
|
|
79
|
+
transition: { primary: 'transition', alternatives: ['animer'], normalized: 'transition' },
|
|
80
|
+
on: { primary: 'sur', alternatives: ['quand', 'lors'], normalized: 'on' },
|
|
81
|
+
trigger: { primary: 'déclencher', normalized: 'trigger' },
|
|
82
|
+
send: { primary: 'envoyer', normalized: 'send' },
|
|
83
|
+
focus: { primary: 'focaliser', alternatives: ['concentrer'], normalized: 'focus' },
|
|
84
|
+
blur: { primary: 'défocaliser', normalized: 'blur' },
|
|
85
|
+
go: { primary: 'aller', alternatives: ['naviguer'], normalized: 'go' },
|
|
86
|
+
wait: { primary: 'attendre', normalized: 'wait' },
|
|
87
|
+
fetch: { primary: 'chercher', alternatives: ['récupérer'], normalized: 'fetch' },
|
|
88
|
+
settle: { primary: 'stabiliser', normalized: 'settle' },
|
|
89
|
+
if: { primary: 'si', normalized: 'if' },
|
|
90
|
+
when: { primary: 'quand', normalized: 'when' },
|
|
91
|
+
where: { primary: 'où', normalized: 'where' },
|
|
92
|
+
else: { primary: 'sinon', normalized: 'else' },
|
|
93
|
+
repeat: { primary: 'répéter', normalized: 'repeat' },
|
|
94
|
+
for: { primary: 'pour', normalized: 'for' },
|
|
95
|
+
while: { primary: 'pendant', normalized: 'while' },
|
|
96
|
+
continue: { primary: 'continuer', normalized: 'continue' },
|
|
97
|
+
halt: { primary: 'arrêter', alternatives: ['stopper'], normalized: 'halt' },
|
|
98
|
+
throw: { primary: 'lancer', normalized: 'throw' },
|
|
99
|
+
call: { primary: 'appeler', normalized: 'call' },
|
|
100
|
+
return: { primary: 'retourner', alternatives: ['renvoyer'], normalized: 'return' },
|
|
101
|
+
then: { primary: 'puis', alternatives: ['ensuite', 'alors'], normalized: 'then' },
|
|
102
|
+
and: { primary: 'et', alternatives: ['aussi', 'également'], normalized: 'and' },
|
|
103
|
+
end: { primary: 'fin', alternatives: ['terminer', 'finir'], normalized: 'end' },
|
|
104
|
+
js: { primary: 'js', normalized: 'js' },
|
|
105
|
+
async: { primary: 'asynchrone', normalized: 'async' },
|
|
106
|
+
tell: { primary: 'dire', normalized: 'tell' },
|
|
107
|
+
default: { primary: 'défaut', normalized: 'default' },
|
|
108
|
+
init: { primary: 'initialiser', normalized: 'init' },
|
|
109
|
+
behavior: { primary: 'comportement', normalized: 'behavior' },
|
|
110
|
+
install: { primary: 'installer', normalized: 'install' },
|
|
111
|
+
measure: { primary: 'mesurer', normalized: 'measure' },
|
|
112
|
+
into: { primary: 'dans', normalized: 'into' },
|
|
113
|
+
before: { primary: 'avant', normalized: 'before' },
|
|
114
|
+
after: { primary: 'après', normalized: 'after' },
|
|
115
|
+
// Event modifiers (for repeat until event)
|
|
116
|
+
until: { primary: "jusqu'à", alternatives: ['jusque'], normalized: 'until' },
|
|
117
|
+
event: { primary: 'événement', normalized: 'event' },
|
|
118
|
+
from: { primary: 'de', alternatives: ['depuis'], normalized: 'from' },
|
|
119
|
+
},
|
|
120
|
+
eventHandler: {
|
|
121
|
+
keyword: { primary: 'sur', alternatives: ['lors'] },
|
|
122
|
+
sourceMarker: { primary: 'de', alternatives: ['depuis'], position: 'before' },
|
|
123
|
+
conditionalKeyword: { primary: 'quand', alternatives: ['lorsque'] },
|
|
124
|
+
},
|
|
125
|
+
};
|
|
@@ -0,0 +1,126 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* German Language Profile
|
|
3
|
+
*
|
|
4
|
+
* SVO word order (V2 in main clauses), prepositions, space-separated.
|
|
5
|
+
* Features case system, compound words, and verb-second word order in main clauses.
|
|
6
|
+
*/
|
|
7
|
+
|
|
8
|
+
import type { LanguageProfile } from './types';
|
|
9
|
+
|
|
10
|
+
export const germanProfile: LanguageProfile = {
|
|
11
|
+
code: 'de',
|
|
12
|
+
name: 'German',
|
|
13
|
+
nativeName: 'Deutsch',
|
|
14
|
+
direction: 'ltr',
|
|
15
|
+
wordOrder: 'SVO',
|
|
16
|
+
markingStrategy: 'preposition',
|
|
17
|
+
usesSpaces: true,
|
|
18
|
+
// Infinitive is standard for German software UI (Speichern, Öffnen, Schließen)
|
|
19
|
+
// Also used in written instructions ("Bitte nicht stören")
|
|
20
|
+
defaultVerbForm: 'infinitive',
|
|
21
|
+
verb: {
|
|
22
|
+
position: 'start',
|
|
23
|
+
subjectDrop: false,
|
|
24
|
+
},
|
|
25
|
+
references: {
|
|
26
|
+
me: 'ich', // "I"
|
|
27
|
+
it: 'es', // "it"
|
|
28
|
+
you: 'du', // "you"
|
|
29
|
+
result: 'Ergebnis',
|
|
30
|
+
event: 'Ereignis',
|
|
31
|
+
target: 'Ziel',
|
|
32
|
+
body: 'Körper',
|
|
33
|
+
},
|
|
34
|
+
possessive: {
|
|
35
|
+
marker: '', // German uses possessive pronouns directly
|
|
36
|
+
markerPosition: 'before-property',
|
|
37
|
+
usePossessiveAdjectives: true,
|
|
38
|
+
specialForms: {
|
|
39
|
+
me: 'mein', // "my"
|
|
40
|
+
it: 'sein', // "its"
|
|
41
|
+
you: 'dein', // "your"
|
|
42
|
+
},
|
|
43
|
+
keywords: {
|
|
44
|
+
mein: 'me',
|
|
45
|
+
meine: 'me',
|
|
46
|
+
meinen: 'me',
|
|
47
|
+
dein: 'you',
|
|
48
|
+
deine: 'you',
|
|
49
|
+
deinen: 'you',
|
|
50
|
+
sein: 'it',
|
|
51
|
+
seine: 'it',
|
|
52
|
+
seinen: 'it',
|
|
53
|
+
},
|
|
54
|
+
},
|
|
55
|
+
roleMarkers: {
|
|
56
|
+
destination: { primary: 'auf', alternatives: ['zu', 'in'], position: 'before' },
|
|
57
|
+
source: { primary: 'von', alternatives: ['aus'], position: 'before' },
|
|
58
|
+
patient: { primary: '', position: 'before' },
|
|
59
|
+
style: { primary: 'mit', position: 'before' },
|
|
60
|
+
},
|
|
61
|
+
keywords: {
|
|
62
|
+
toggle: { primary: 'umschalten', alternatives: ['wechseln'], normalized: 'toggle' },
|
|
63
|
+
add: { primary: 'hinzufügen', normalized: 'add' },
|
|
64
|
+
remove: { primary: 'entfernen', alternatives: ['löschen'], normalized: 'remove' },
|
|
65
|
+
put: { primary: 'setzen', alternatives: ['stellen', 'platzieren'], normalized: 'put' },
|
|
66
|
+
append: { primary: 'anhängen', normalized: 'append' },
|
|
67
|
+
prepend: { primary: 'voranstellen', normalized: 'prepend' },
|
|
68
|
+
take: { primary: 'nehmen', normalized: 'take' },
|
|
69
|
+
make: { primary: 'machen', alternatives: ['erstellen', 'erzeugen'], normalized: 'make' },
|
|
70
|
+
clone: { primary: 'klonen', alternatives: ['kopieren'], normalized: 'clone' },
|
|
71
|
+
swap: { primary: 'austauschen', alternatives: ['tauschen', 'wechseln'], normalized: 'swap' },
|
|
72
|
+
morph: { primary: 'verwandeln', alternatives: ['transformieren'], normalized: 'morph' },
|
|
73
|
+
set: { primary: 'festlegen', alternatives: ['definieren'], normalized: 'set' },
|
|
74
|
+
get: { primary: 'holen', alternatives: ['bekommen'], normalized: 'get' },
|
|
75
|
+
increment: { primary: 'erhöhen', normalized: 'increment' },
|
|
76
|
+
decrement: { primary: 'verringern', alternatives: ['vermindern'], normalized: 'decrement' },
|
|
77
|
+
log: { primary: 'protokollieren', alternatives: ['ausgeben'], normalized: 'log' },
|
|
78
|
+
show: { primary: 'zeigen', alternatives: ['anzeigen'], normalized: 'show' },
|
|
79
|
+
hide: { primary: 'verbergen', alternatives: ['verstecken'], normalized: 'hide' },
|
|
80
|
+
transition: { primary: 'übergang', alternatives: ['animieren'], normalized: 'transition' },
|
|
81
|
+
on: { primary: 'bei', alternatives: ['wenn', 'auf'], normalized: 'on' },
|
|
82
|
+
trigger: { primary: 'auslösen', normalized: 'trigger' },
|
|
83
|
+
send: { primary: 'senden', alternatives: ['schicken'], normalized: 'send' },
|
|
84
|
+
focus: { primary: 'fokussieren', normalized: 'focus' },
|
|
85
|
+
blur: { primary: 'defokussieren', alternatives: ['entfokussieren'], normalized: 'blur' },
|
|
86
|
+
go: { primary: 'gehen', alternatives: ['navigieren'], normalized: 'go' },
|
|
87
|
+
wait: { primary: 'warten', normalized: 'wait' },
|
|
88
|
+
fetch: { primary: 'abrufen', alternatives: ['laden'], normalized: 'fetch' },
|
|
89
|
+
settle: { primary: 'stabilisieren', normalized: 'settle' },
|
|
90
|
+
if: { primary: 'wenn', alternatives: ['falls'], normalized: 'if' },
|
|
91
|
+
when: { primary: 'wenn', normalized: 'when' },
|
|
92
|
+
where: { primary: 'wo', normalized: 'where' },
|
|
93
|
+
else: { primary: 'sonst', alternatives: ['ansonsten'], normalized: 'else' },
|
|
94
|
+
repeat: { primary: 'wiederholen', normalized: 'repeat' },
|
|
95
|
+
for: { primary: 'für', normalized: 'for' },
|
|
96
|
+
while: { primary: 'solange', alternatives: ['während'], normalized: 'while' },
|
|
97
|
+
continue: { primary: 'fortfahren', alternatives: ['weiter'], normalized: 'continue' },
|
|
98
|
+
halt: { primary: 'anhalten', alternatives: ['stoppen'], normalized: 'halt' },
|
|
99
|
+
throw: { primary: 'werfen', normalized: 'throw' },
|
|
100
|
+
call: { primary: 'aufrufen', normalized: 'call' },
|
|
101
|
+
return: { primary: 'zurückgeben', normalized: 'return' },
|
|
102
|
+
then: { primary: 'dann', alternatives: ['danach', 'anschließend'], normalized: 'then' },
|
|
103
|
+
and: { primary: 'und', alternatives: ['sowie', 'auch'], normalized: 'and' },
|
|
104
|
+
end: { primary: 'ende', alternatives: ['beenden', 'fertig'], normalized: 'end' },
|
|
105
|
+
js: { primary: 'js', alternatives: ['javascript'], normalized: 'js' },
|
|
106
|
+
async: { primary: 'asynchron', normalized: 'async' },
|
|
107
|
+
tell: { primary: 'sagen', normalized: 'tell' },
|
|
108
|
+
default: { primary: 'standard', normalized: 'default' },
|
|
109
|
+
init: { primary: 'initialisieren', normalized: 'init' },
|
|
110
|
+
behavior: { primary: 'verhalten', normalized: 'behavior' },
|
|
111
|
+
install: { primary: 'installieren', normalized: 'install' },
|
|
112
|
+
measure: { primary: 'messen', normalized: 'measure' },
|
|
113
|
+
into: { primary: 'hinein', normalized: 'into' },
|
|
114
|
+
before: { primary: 'vor', normalized: 'before' },
|
|
115
|
+
after: { primary: 'nach', normalized: 'after' },
|
|
116
|
+
// Event modifiers (for repeat until event)
|
|
117
|
+
until: { primary: 'bis', normalized: 'until' },
|
|
118
|
+
event: { primary: 'Ereignis', alternatives: ['Event'], normalized: 'event' },
|
|
119
|
+
from: { primary: 'von', alternatives: ['aus'], normalized: 'from' },
|
|
120
|
+
},
|
|
121
|
+
eventHandler: {
|
|
122
|
+
keyword: { primary: 'bei', alternatives: ['auf'] },
|
|
123
|
+
sourceMarker: { primary: 'von', alternatives: ['aus'], position: 'before' },
|
|
124
|
+
conditionalKeyword: { primary: 'wenn', alternatives: ['falls'] },
|
|
125
|
+
},
|
|
126
|
+
};
|