1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
// Grammalecte - Conjugueur
// License: GPL 3
"use strict";
${map}
const conj = {
_lVtyp: null,
_lTags: null,
_dPatternConj: {},
_dVerb: {},
init: function (sJSONData) {
try {
let _oData = JSON.parse(sJSONData);
this._lVtyp = _oData.lVtyp;
|
|
|
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
// Grammalecte - Conjugueur
// License: GPL 3
"use strict";
${map}
const conj = {
_lVtyp: [],
_lTags: [],
_dPatternConj: {},
_dVerb: {},
init: function (sJSONData) {
try {
let _oData = JSON.parse(sJSONData);
this._lVtyp = _oData.lVtyp;
|