@lokascript/i18n 1.3.0 → 2.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.
Files changed (90) hide show
  1. package/dist/browser.cjs +3625 -3581
  2. package/dist/browser.cjs.map +1 -1
  3. package/dist/browser.d.cts +9 -3
  4. package/dist/browser.d.ts +9 -3
  5. package/dist/browser.js +3595 -3582
  6. package/dist/browser.js.map +1 -1
  7. package/dist/dictionaries/index.cjs +0 -44
  8. package/dist/dictionaries/index.cjs.map +1 -1
  9. package/dist/dictionaries/index.d.cts +29 -80
  10. package/dist/dictionaries/index.d.ts +29 -80
  11. package/dist/dictionaries/index.js +0 -44
  12. package/dist/dictionaries/index.js.map +1 -1
  13. package/dist/index.cjs +7605 -7544
  14. package/dist/index.cjs.map +1 -1
  15. package/dist/index.d.cts +36 -36
  16. package/dist/index.d.ts +36 -36
  17. package/dist/index.js +7576 -7545
  18. package/dist/index.js.map +1 -1
  19. package/dist/lokascript-i18n.min.js +1 -1
  20. package/dist/lokascript-i18n.min.js.map +1 -1
  21. package/dist/lokascript-i18n.mjs +3792 -3813
  22. package/dist/lokascript-i18n.mjs.map +1 -1
  23. package/dist/plugins/vite.cjs +0 -42
  24. package/dist/plugins/vite.cjs.map +1 -1
  25. package/dist/plugins/vite.js +0 -42
  26. package/dist/plugins/vite.js.map +1 -1
  27. package/dist/plugins/webpack.cjs +0 -42
  28. package/dist/plugins/webpack.cjs.map +1 -1
  29. package/dist/plugins/webpack.js +0 -42
  30. package/dist/plugins/webpack.js.map +1 -1
  31. package/dist/{transformer-BBKJJ2vd.d.ts → transformer-DN_HqdDB.d.ts} +107 -14
  32. package/dist/{transformer-D8MM2_rz.d.cts → transformer-kXwlqa5b.d.cts} +107 -14
  33. package/package.json +7 -6
  34. package/src/browser.ts +22 -1
  35. package/src/dictionaries/ar.ts +0 -2
  36. package/src/dictionaries/de.ts +0 -2
  37. package/src/dictionaries/derive.ts +0 -2
  38. package/src/dictionaries/en.ts +0 -2
  39. package/src/dictionaries/es.ts +0 -2
  40. package/src/dictionaries/fr.ts +0 -2
  41. package/src/dictionaries/hi.ts +0 -2
  42. package/src/dictionaries/id.ts +0 -2
  43. package/src/dictionaries/index.ts +79 -163
  44. package/src/dictionaries/it.ts +0 -2
  45. package/src/dictionaries/ja.ts +0 -2
  46. package/src/dictionaries/ko.ts +0 -2
  47. package/src/dictionaries/ms.ts +0 -2
  48. package/src/dictionaries/pl.ts +0 -2
  49. package/src/dictionaries/pt.ts +0 -2
  50. package/src/dictionaries/qu.ts +0 -2
  51. package/src/dictionaries/ru.ts +0 -2
  52. package/src/dictionaries/sw.ts +0 -2
  53. package/src/dictionaries/tl.ts +0 -2
  54. package/src/dictionaries/tr.ts +0 -2
  55. package/src/dictionaries/uk.ts +0 -2
  56. package/src/dictionaries/vi.ts +0 -2
  57. package/src/dictionaries/zh.ts +0 -2
  58. package/src/grammar/direct-mappings.ts +0 -2
  59. package/src/grammar/grammar.test.ts +98 -0
  60. package/src/grammar/index.ts +9 -0
  61. package/src/grammar/transformer.ts +125 -73
  62. package/src/index.ts +30 -0
  63. package/src/parser/ar.ts +1 -1
  64. package/src/parser/bn.ts +9 -0
  65. package/src/parser/de.ts +1 -1
  66. package/src/parser/es.ts +1 -1
  67. package/src/parser/fr.ts +1 -1
  68. package/src/parser/hi.ts +9 -0
  69. package/src/parser/id.ts +1 -1
  70. package/src/parser/index.ts +10 -0
  71. package/src/parser/it.ts +9 -0
  72. package/src/parser/ja.ts +1 -1
  73. package/src/parser/ko.ts +1 -1
  74. package/src/parser/locale-manager.ts +1 -1
  75. package/src/parser/ms.ts +9 -0
  76. package/src/parser/pl.ts +9 -0
  77. package/src/parser/pt.ts +1 -1
  78. package/src/parser/qu.ts +1 -1
  79. package/src/parser/ru.ts +9 -0
  80. package/src/parser/sw.ts +1 -1
  81. package/src/parser/th.ts +9 -0
  82. package/src/parser/tl.ts +9 -0
  83. package/src/parser/tr.ts +1 -1
  84. package/src/parser/uk.ts +9 -0
  85. package/src/parser/vi.ts +9 -0
  86. package/src/parser/zh.ts +1 -1
  87. package/src/runtime.test.ts +152 -0
  88. package/src/runtime.ts +32 -13
  89. package/src/utils/locale.test.ts +108 -0
  90. package/src/utils/locale.ts +19 -25
@@ -77,111 +77,60 @@ declare function validateDictionary(derived: Dictionary, original: Dictionary):
77
77
  /**
78
78
  * Dictionary Index
79
79
  *
80
- * Exports dictionaries for all supported languages.
80
+ * Exports dictionaries for all 22 supported languages.
81
+ * Each dictionary maps English canonical keywords to locale-specific translations
82
+ * across 8 categories: commands, modifiers, events, logical, temporal, values,
83
+ * attributes, and expressions.
81
84
  *
82
- * Strategy: Dictionaries are derived from semantic profiles where possible,
83
- * with fallbacks to manual definitions for categories not in profiles
84
- * (events, temporal, some values, attributes).
85
- *
86
- * The semantic package's language profiles are the single source of truth
87
- * for command/modifier/logical keyword translations.
88
- *
89
- * TRANSITION NOTE: Currently using full legacy overrides to preserve
90
- * backward compatibility. Once profiles and dictionaries are synchronized,
91
- * the legacy overrides can be reduced to only non-profile categories.
85
+ * Derivation utilities (deriveFromProfile, createEnglishDictionary) are available
86
+ * for generating dictionaries from semantic language profiles. See ./derive.ts.
92
87
  */
93
88
 
94
- /**
95
- * English dictionary - uses legacy values for full compatibility.
96
- */
89
+ /** English dictionary */
97
90
  declare const en: Dictionary;
98
- /**
99
- * Spanish dictionary - legacy overrides for compatibility.
100
- */
91
+ /** Spanish dictionary */
101
92
  declare const es: Dictionary;
102
- /**
103
- * Japanese dictionary - legacy overrides for compatibility.
104
- */
93
+ /** Japanese dictionary */
105
94
  declare const ja: Dictionary;
106
- /**
107
- * Korean dictionary - legacy overrides for compatibility.
108
- */
95
+ /** Korean dictionary */
109
96
  declare const ko: Dictionary;
110
- /**
111
- * Chinese dictionary - legacy overrides for compatibility.
112
- */
97
+ /** Chinese dictionary */
113
98
  declare const zh: Dictionary;
114
- /**
115
- * French dictionary - legacy overrides for compatibility.
116
- */
99
+ /** French dictionary */
117
100
  declare const fr: Dictionary;
118
- /**
119
- * German dictionary - legacy overrides for compatibility.
120
- */
101
+ /** German dictionary */
121
102
  declare const de: Dictionary;
122
- /**
123
- * Arabic dictionary - legacy overrides for compatibility.
124
- */
103
+ /** Arabic dictionary */
125
104
  declare const ar: Dictionary;
126
- /**
127
- * Turkish dictionary - legacy overrides for compatibility.
128
- */
105
+ /** Turkish dictionary */
129
106
  declare const tr: Dictionary;
130
- /**
131
- * Indonesian dictionary - legacy overrides for compatibility.
132
- */
107
+ /** Indonesian dictionary */
133
108
  declare const id: Dictionary;
134
- /**
135
- * Portuguese dictionary - legacy overrides for compatibility.
136
- */
109
+ /** Portuguese dictionary */
137
110
  declare const pt: Dictionary;
138
- /**
139
- * Quechua dictionary - legacy overrides for compatibility.
140
- */
111
+ /** Quechua dictionary */
141
112
  declare const qu: Dictionary;
142
- /**
143
- * Swahili dictionary - legacy overrides for compatibility.
144
- */
113
+ /** Swahili dictionary */
145
114
  declare const sw: Dictionary;
146
- /**
147
- * Italian dictionary - legacy overrides for compatibility.
148
- */
115
+ /** Italian dictionary */
149
116
  declare const it: Dictionary;
150
- /**
151
- * Vietnamese dictionary - legacy overrides for compatibility.
152
- */
117
+ /** Vietnamese dictionary */
153
118
  declare const vi: Dictionary;
154
- /**
155
- * Polish dictionary - legacy overrides for compatibility.
156
- */
119
+ /** Polish dictionary */
157
120
  declare const pl: Dictionary;
158
- /**
159
- * Russian dictionary - legacy overrides for compatibility.
160
- */
121
+ /** Russian dictionary */
161
122
  declare const ru: Dictionary;
162
- /**
163
- * Ukrainian dictionary - legacy overrides for compatibility.
164
- */
123
+ /** Ukrainian dictionary */
165
124
  declare const uk: Dictionary;
166
- /**
167
- * Hindi dictionary - legacy overrides for compatibility.
168
- */
125
+ /** Hindi dictionary */
169
126
  declare const hi: Dictionary;
170
- /**
171
- * Bengali dictionary - legacy overrides for compatibility.
172
- */
127
+ /** Bengali dictionary */
173
128
  declare const bn: Dictionary;
174
- /**
175
- * Thai dictionary - legacy overrides for compatibility.
176
- */
129
+ /** Thai dictionary */
177
130
  declare const th: Dictionary;
178
- /**
179
- * Malay dictionary - legacy overrides for compatibility.
180
- */
131
+ /** Malay dictionary */
181
132
  declare const ms: Dictionary;
182
- /**
183
- * Tagalog dictionary - legacy overrides for compatibility.
184
- */
133
+ /** Tagalog dictionary */
185
134
  declare const tl: Dictionary;
186
135
  /**
187
136
  * All available dictionaries indexed by locale code.
@@ -77,111 +77,60 @@ declare function validateDictionary(derived: Dictionary, original: Dictionary):
77
77
  /**
78
78
  * Dictionary Index
79
79
  *
80
- * Exports dictionaries for all supported languages.
80
+ * Exports dictionaries for all 22 supported languages.
81
+ * Each dictionary maps English canonical keywords to locale-specific translations
82
+ * across 8 categories: commands, modifiers, events, logical, temporal, values,
83
+ * attributes, and expressions.
81
84
  *
82
- * Strategy: Dictionaries are derived from semantic profiles where possible,
83
- * with fallbacks to manual definitions for categories not in profiles
84
- * (events, temporal, some values, attributes).
85
- *
86
- * The semantic package's language profiles are the single source of truth
87
- * for command/modifier/logical keyword translations.
88
- *
89
- * TRANSITION NOTE: Currently using full legacy overrides to preserve
90
- * backward compatibility. Once profiles and dictionaries are synchronized,
91
- * the legacy overrides can be reduced to only non-profile categories.
85
+ * Derivation utilities (deriveFromProfile, createEnglishDictionary) are available
86
+ * for generating dictionaries from semantic language profiles. See ./derive.ts.
92
87
  */
93
88
 
94
- /**
95
- * English dictionary - uses legacy values for full compatibility.
96
- */
89
+ /** English dictionary */
97
90
  declare const en: Dictionary;
98
- /**
99
- * Spanish dictionary - legacy overrides for compatibility.
100
- */
91
+ /** Spanish dictionary */
101
92
  declare const es: Dictionary;
102
- /**
103
- * Japanese dictionary - legacy overrides for compatibility.
104
- */
93
+ /** Japanese dictionary */
105
94
  declare const ja: Dictionary;
106
- /**
107
- * Korean dictionary - legacy overrides for compatibility.
108
- */
95
+ /** Korean dictionary */
109
96
  declare const ko: Dictionary;
110
- /**
111
- * Chinese dictionary - legacy overrides for compatibility.
112
- */
97
+ /** Chinese dictionary */
113
98
  declare const zh: Dictionary;
114
- /**
115
- * French dictionary - legacy overrides for compatibility.
116
- */
99
+ /** French dictionary */
117
100
  declare const fr: Dictionary;
118
- /**
119
- * German dictionary - legacy overrides for compatibility.
120
- */
101
+ /** German dictionary */
121
102
  declare const de: Dictionary;
122
- /**
123
- * Arabic dictionary - legacy overrides for compatibility.
124
- */
103
+ /** Arabic dictionary */
125
104
  declare const ar: Dictionary;
126
- /**
127
- * Turkish dictionary - legacy overrides for compatibility.
128
- */
105
+ /** Turkish dictionary */
129
106
  declare const tr: Dictionary;
130
- /**
131
- * Indonesian dictionary - legacy overrides for compatibility.
132
- */
107
+ /** Indonesian dictionary */
133
108
  declare const id: Dictionary;
134
- /**
135
- * Portuguese dictionary - legacy overrides for compatibility.
136
- */
109
+ /** Portuguese dictionary */
137
110
  declare const pt: Dictionary;
138
- /**
139
- * Quechua dictionary - legacy overrides for compatibility.
140
- */
111
+ /** Quechua dictionary */
141
112
  declare const qu: Dictionary;
142
- /**
143
- * Swahili dictionary - legacy overrides for compatibility.
144
- */
113
+ /** Swahili dictionary */
145
114
  declare const sw: Dictionary;
146
- /**
147
- * Italian dictionary - legacy overrides for compatibility.
148
- */
115
+ /** Italian dictionary */
149
116
  declare const it: Dictionary;
150
- /**
151
- * Vietnamese dictionary - legacy overrides for compatibility.
152
- */
117
+ /** Vietnamese dictionary */
153
118
  declare const vi: Dictionary;
154
- /**
155
- * Polish dictionary - legacy overrides for compatibility.
156
- */
119
+ /** Polish dictionary */
157
120
  declare const pl: Dictionary;
158
- /**
159
- * Russian dictionary - legacy overrides for compatibility.
160
- */
121
+ /** Russian dictionary */
161
122
  declare const ru: Dictionary;
162
- /**
163
- * Ukrainian dictionary - legacy overrides for compatibility.
164
- */
123
+ /** Ukrainian dictionary */
165
124
  declare const uk: Dictionary;
166
- /**
167
- * Hindi dictionary - legacy overrides for compatibility.
168
- */
125
+ /** Hindi dictionary */
169
126
  declare const hi: Dictionary;
170
- /**
171
- * Bengali dictionary - legacy overrides for compatibility.
172
- */
127
+ /** Bengali dictionary */
173
128
  declare const bn: Dictionary;
174
- /**
175
- * Thai dictionary - legacy overrides for compatibility.
176
- */
129
+ /** Thai dictionary */
177
130
  declare const th: Dictionary;
178
- /**
179
- * Malay dictionary - legacy overrides for compatibility.
180
- */
131
+ /** Malay dictionary */
181
132
  declare const ms: Dictionary;
182
- /**
183
- * Tagalog dictionary - legacy overrides for compatibility.
184
- */
133
+ /** Tagalog dictionary */
185
134
  declare const tl: Dictionary;
186
135
  /**
187
136
  * All available dictionaries indexed by locale code.
@@ -41,9 +41,7 @@ var en = {
41
41
  // Data Commands
42
42
  increment: "increment",
43
43
  decrement: "decrement",
44
- bind: "bind",
45
44
  default: "default",
46
- persist: "persist",
47
45
  // Navigation Commands
48
46
  go: "go",
49
47
  pushUrl: "pushUrl",
@@ -248,9 +246,7 @@ var es = {
248
246
  // Data Commands
249
247
  increment: "incrementar",
250
248
  decrement: "decrementar",
251
- bind: "vincular",
252
249
  default: "predeterminar",
253
- persist: "persistir",
254
250
  // Navigation Commands
255
251
  go: "ir",
256
252
  pushUrl: "pushUrl",
@@ -456,9 +452,7 @@ var ko = {
456
452
  // Data Commands
457
453
  increment: "\uC99D\uAC00",
458
454
  decrement: "\uAC10\uC18C",
459
- bind: "\uBC14\uC778\uB4DC",
460
455
  default: "\uAE30\uBCF8\uAC12",
461
- persist: "\uC720\uC9C0",
462
456
  // Navigation Commands
463
457
  go: "\uC774\uB3D9",
464
458
  pushUrl: "URL\uD478\uC2DC",
@@ -667,9 +661,7 @@ var zh = {
667
661
  // Data Commands
668
662
  increment: "\u589E\u52A0",
669
663
  decrement: "\u51CF\u5C11",
670
- bind: "\u7ED1\u5B9A",
671
664
  default: "\u9ED8\u8BA4",
672
- persist: "\u6301\u4E45\u5316",
673
665
  // Navigation Commands
674
666
  go: "\u524D\u5F80",
675
667
  pushUrl: "\u63A8\u9001\u7F51\u5740",
@@ -878,9 +870,7 @@ var fr = {
878
870
  // Data Commands
879
871
  increment: "incr\xE9menter",
880
872
  decrement: "d\xE9cr\xE9menter",
881
- bind: "lier",
882
873
  default: "d\xE9faut",
883
- persist: "persister",
884
874
  // Navigation Commands
885
875
  go: "aller",
886
876
  pushUrl: "pousserUrl",
@@ -1086,9 +1076,7 @@ var de = {
1086
1076
  // Data Commands
1087
1077
  increment: "erh\xF6hen",
1088
1078
  decrement: "verringern",
1089
- bind: "binden",
1090
1079
  default: "standard",
1091
- persist: "speichern",
1092
1080
  // Navigation Commands
1093
1081
  go: "gehen",
1094
1082
  pushUrl: "urlHinzuf\xFCgen",
@@ -1294,9 +1282,7 @@ var ja = {
1294
1282
  // Data Commands
1295
1283
  increment: "\u5897\u52A0",
1296
1284
  decrement: "\u6E1B\u5C11",
1297
- bind: "\u7D50\u5408",
1298
1285
  default: "\u65E2\u5B9A",
1299
- persist: "\u6C38\u7D9A\u5316",
1300
1286
  // Navigation Commands
1301
1287
  go: "\u79FB\u52D5",
1302
1288
  pushUrl: "URL\u30D7\u30C3\u30B7\u30E5",
@@ -1501,9 +1487,7 @@ var ar = {
1501
1487
  // Data Commands
1502
1488
  increment: "\u0632\u0650\u062F",
1503
1489
  decrement: "\u0623\u0646\u0642\u0635",
1504
- bind: "\u0627\u0631\u0628\u0637",
1505
1490
  default: "\u0627\u0641\u062A\u0631\u0627\u0636\u064A",
1506
- persist: "\u0627\u062D\u0641\u0638",
1507
1491
  // Navigation Commands
1508
1492
  go: "\u0627\u0630\u0647\u0628",
1509
1493
  pushUrl: "\u0627\u062F\u0641\u0639 \u0631\u0627\u0628\u0637",
@@ -1712,9 +1696,7 @@ var tr = {
1712
1696
  // Data Commands
1713
1697
  increment: "art\u0131r",
1714
1698
  decrement: "azalt",
1715
- bind: "ba\u011Fla",
1716
1699
  default: "varsay\u0131lan",
1717
- persist: "kal\u0131c\u0131",
1718
1700
  // Navigation Commands
1719
1701
  go: "git",
1720
1702
  pushUrl: "urlEkle",
@@ -1925,9 +1907,7 @@ var id = {
1925
1907
  // Data Commands
1926
1908
  increment: "tambahkan",
1927
1909
  decrement: "kurangi",
1928
- bind: "ikat",
1929
1910
  default: "bawaan",
1930
- persist: "simpan",
1931
1911
  // Navigation Commands
1932
1912
  go: "pergi",
1933
1913
  pushUrl: "tambahUrl",
@@ -2136,9 +2116,7 @@ var qu = {
2136
2116
  // Data Commands
2137
2117
  increment: "yapay",
2138
2118
  decrement: "pisiyachiy",
2139
- bind: "watay",
2140
2119
  default: "\xF1awpaq_kaq",
2141
- persist: "waqaychay",
2142
2120
  // Navigation Commands
2143
2121
  go: "riy",
2144
2122
  pushUrl: "url_tanqay",
@@ -2347,9 +2325,7 @@ var sw = {
2347
2325
  // Data Commands
2348
2326
  increment: "ongeza",
2349
2327
  decrement: "punguza",
2350
- bind: "funga",
2351
2328
  default: "msingi",
2352
- persist: "hifadhi",
2353
2329
  // Navigation Commands
2354
2330
  go: "nenda",
2355
2331
  pushUrl: "sukumaUrl",
@@ -2559,9 +2535,7 @@ var pt = {
2559
2535
  // Data Commands
2560
2536
  increment: "incrementar",
2561
2537
  decrement: "decrementar",
2562
- bind: "vincular",
2563
2538
  default: "padr\xE3o",
2564
- persist: "persistir",
2565
2539
  // Navigation Commands
2566
2540
  go: "ir",
2567
2541
  pushUrl: "pushUrl",
@@ -2770,9 +2744,7 @@ var it = {
2770
2744
  // Data Commands
2771
2745
  increment: "incrementare",
2772
2746
  decrement: "decrementare",
2773
- bind: "vincolare",
2774
2747
  default: "predefinito",
2775
- persist: "persistere",
2776
2748
  // Navigation Commands
2777
2749
  go: "andare",
2778
2750
  pushUrl: "pushUrl",
@@ -2977,9 +2949,7 @@ var vi = {
2977
2949
  // Data Commands
2978
2950
  increment: "t\u0103ng",
2979
2951
  decrement: "gi\u1EA3m",
2980
- bind: "r\xE0ng bu\u1ED9c",
2981
2952
  default: "m\u1EB7c \u0111\u1ECBnh",
2982
- persist: "duy tr\xEC",
2983
2953
  // Navigation Commands
2984
2954
  go: "\u0111i \u0111\u1EBFn",
2985
2955
  pushUrl: "pushUrl",
@@ -3167,9 +3137,7 @@ var pl = {
3167
3137
  // Data Commands
3168
3138
  increment: "zwi\u0119ksz",
3169
3139
  decrement: "zmniejsz",
3170
- bind: "powi\u0105\u017C",
3171
3140
  default: "domy\u015Blnie",
3172
- persist: "zachowaj",
3173
3141
  // Navigation Commands
3174
3142
  go: "id\u017A",
3175
3143
  pushUrl: "dodajUrl",
@@ -3374,9 +3342,7 @@ var russianDictionary = {
3374
3342
  // Data Commands
3375
3343
  increment: "\u0443\u0432\u0435\u043B\u0438\u0447\u0438\u0442\u044C",
3376
3344
  decrement: "\u0443\u043C\u0435\u043D\u044C\u0448\u0438\u0442\u044C",
3377
- bind: "\u0441\u0432\u044F\u0437\u0430\u0442\u044C",
3378
3345
  default: "\u043F\u043E_\u0443\u043C\u043E\u043B\u0447\u0430\u043D\u0438\u044E",
3379
- persist: "\u0441\u043E\u0445\u0440\u0430\u043D\u0438\u0442\u044C",
3380
3346
  // Navigation Commands
3381
3347
  go: "\u043F\u0435\u0440\u0435\u0439\u0442\u0438",
3382
3348
  pushUrl: "\u0434\u043E\u0431\u0430\u0432\u0438\u0442\u044C_url",
@@ -3611,9 +3577,7 @@ var ukrainianDictionary = {
3611
3577
  // Data Commands
3612
3578
  increment: "\u0437\u0431\u0456\u043B\u044C\u0448\u0438\u0442\u0438",
3613
3579
  decrement: "\u0437\u043C\u0435\u043D\u0448\u0438\u0442\u0438",
3614
- bind: "\u043F\u0440\u0438\u0432'\u044F\u0437\u0430\u0442\u0438",
3615
3580
  default: "\u0437\u0430_\u0437\u0430\u043C\u043E\u0432\u0447\u0443\u0432\u0430\u043D\u043D\u044F\u043C",
3616
- persist: "\u0437\u0431\u0435\u0440\u0435\u0433\u0442\u0438",
3617
3581
  // Navigation Commands
3618
3582
  go: "\u043F\u0435\u0440\u0435\u0439\u0442\u0438",
3619
3583
  pushUrl: "\u0434\u043E\u0434\u0430\u0442\u0438_url",
@@ -3848,9 +3812,7 @@ var hindiDictionary = {
3848
3812
  // Data Commands
3849
3813
  increment: "\u092C\u0922\u093C\u093E\u090F\u0902",
3850
3814
  decrement: "\u0918\u091F\u093E\u090F\u0902",
3851
- bind: "\u092C\u093E\u0901\u0927\u0947\u0902",
3852
3815
  default: "\u0921\u093F\u092B\u093C\u0949\u0932\u094D\u091F",
3853
- persist: "\u0938\u0939\u0947\u091C\u0947\u0902",
3854
3816
  // Navigation Commands
3855
3817
  go: "\u091C\u093E\u090F\u0902",
3856
3818
  pushUrl: "url_\u091C\u094B\u0921\u093C\u0947\u0902",
@@ -4383,9 +4345,7 @@ var malayDictionary = {
4383
4345
  // Data Commands
4384
4346
  increment: "tambah_satu",
4385
4347
  decrement: "kurang_satu",
4386
- bind: "ikat",
4387
4348
  default: "lalai",
4388
- persist: "kekal",
4389
4349
  // Navigation Commands
4390
4350
  go: "pergi",
4391
4351
  pushUrl: "tolak_url",
@@ -4622,9 +4582,7 @@ var tagalogDictionary = {
4622
4582
  // Data Commands
4623
4583
  increment: "dagdagan",
4624
4584
  decrement: "bawasan",
4625
- bind: "itali",
4626
4585
  default: "pamantayan",
4627
- persist: "panatilihin",
4628
4586
  // Navigation Commands
4629
4587
  go: "pumunta",
4630
4588
  pushUrl: "itulak_url",
@@ -4860,9 +4818,7 @@ var COMMAND_KEYWORDS = [
4860
4818
  // Data commands
4861
4819
  "increment",
4862
4820
  "decrement",
4863
- "bind",
4864
4821
  "default",
4865
- "persist",
4866
4822
  // Navigation
4867
4823
  "go",
4868
4824
  "pushUrl",