20210326-fix-bug
This commit is contained in:
parent
19ea1a9fd4
commit
fbc188f3ca
3 changed files with 5 additions and 1 deletions
1
conj.js
1
conj.js
|
@ -196,6 +196,7 @@ function generateConj(orig_txt, stem_txt, conj_no) {
|
||||||
autoPaHa.innerHTML = stemAil + autoPaHaSuffix;
|
autoPaHa.innerHTML = stemAil + autoPaHaSuffix;
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
|
isBroadEnd = checkedIfBroadEnd(split_text(stem_txt));
|
||||||
// general 1st vonj verbs
|
// general 1st vonj verbs
|
||||||
firstConjFillTheArray();
|
firstConjFillTheArray();
|
||||||
// irreagularity of the pres. auto. form of lean
|
// irreagularity of the pres. auto. form of lean
|
||||||
|
|
3
conj.ts
3
conj.ts
|
@ -240,6 +240,8 @@ function generateConj(orig_txt : string, stem_txt : string, conj_no : Number){
|
||||||
|
|
||||||
else{
|
else{
|
||||||
|
|
||||||
|
isBroadEnd = checkedIfBroadEnd(split_text(stem_txt));
|
||||||
|
|
||||||
// general 1st vonj verbs
|
// general 1st vonj verbs
|
||||||
firstConjFillTheArray();
|
firstConjFillTheArray();
|
||||||
|
|
||||||
|
@ -280,6 +282,7 @@ function generateConj(orig_txt : string, stem_txt : string, conj_no : Number){
|
||||||
|
|
||||||
// general 1st vonj verbs
|
// general 1st vonj verbs
|
||||||
function firstConjFillTheArray() {
|
function firstConjFillTheArray() {
|
||||||
|
|
||||||
var suffixTable;
|
var suffixTable;
|
||||||
if (isBroadEnd) {
|
if (isBroadEnd) {
|
||||||
suffixTable = first_conj["broad"];
|
suffixTable = first_conj["broad"];
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
<div>
|
<div>
|
||||||
<h1>愛爾蘭語動詞變化產生器</h1>
|
<h1>愛爾蘭語動詞變化產生器</h1>
|
||||||
<p><i>Gineadóir Réimniú na Gaeilge</i></p>
|
<p><i>Gineadóir Réimniú na Gaeilge</i></p>
|
||||||
version 202100307(<a href="https://github.com/Yoxem/irish-verb-conjugator">Github repo</a>)</div>
|
version 20210326(<a href="https://github.com/Yoxem/irish-verb-conjugator">Github repo</a>)</div>
|
||||||
<div><br>
|
<div><br>
|
||||||
</div>
|
</div>
|
||||||
<div>詞彙原形:<input id="original" type="text"></div>
|
<div>詞彙原形:<input id="original" type="text"></div>
|
||||||
|
|
Loading…
Reference in a new issue