36 990
contributi
(Test) Etichetta: Annullato |
(Revert) Etichetta: Ripristino manuale |
||
--Categorizzazione forme semplici
if titleExists(masc) == false then
categoriaMasc = ''▼
else ▼
categoriaMasc = ''..categorizza('Lemmi con forma maschile da scrivere')
▲ else
▲ categoriaMasc = ''
end
if titleExists(mascPl) == false then
categoriaMascPl = ''▼
else ▼
categoriaMascPl = ''..categorizza('Lemmi con forma maschile plurale da scrivere')
▲ else
▲ categoriaMascPl = ''
end
if titleExists(fem) == false then
categoriaFem = ''▼
else ▼
categoriaFem = ''..categorizza('Lemmi con forma femminile da scrivere')
▲ else
▲ categoriaFem = ''
end
if titleExists(femPl) == false then
categoriaFemPl = ''▼
else ▼
categoriaFemPl = ''..categorizza('Lemmi con forma femminile plurale da scrivere')
▲ else
▲ categoriaFemPl = ''
end
-- Categorizzazione forme alternative
if titleExists(masc2) == false then
categoriaMasc2 = ''▼
else ▼
categoriaMasc2 = ''..categorizza('Lemmi con forma maschile alternativa da scrivere')
▲ else
▲ categoriaMasc2 = ''
end
if titleExists(mascPl2) == false then
categoriaMascPl2 = ''▼
else ▼
categoriaMascPl2 = ''..categorizza('Lemmi con forma maschile plurale alternativa da scrivere')
▲ else
▲ categoriaMascPl2 = ''
end
if titleExists(fem2) == false then
categoriaFem2 = ''▼
else ▼
categoriaFem2 = ''..categorizza('Lemmi con forma femminile alternativa da scrivere')
▲ else
▲ categoriaFem2 = ''
end
if titleExists(femPl2) == false then
categoriaFemPl2 = ''▼
else ▼
categoriaFemPl2 = ''..categorizza('Lemmi con forma femminile plurale alternativa da scrivere')
▲ else
▲ categoriaFemPl2 = ''
end
return ''..categoriaMasc..''..categoriaMasc2..''..categoriaMascPl..''..categoriaMascPl2..''..categoriaFem..''..categoriaFem2..''..categoriaFemPl..''..categoriaFemPl2
|