parmcnt=!itemcnt $parms
name_parm1=un parmetro
name_parm2=dos parmetros
name_uniq=tiene una nica solucin
name_none=no tiene solucin
name_many=tiene infinitas soluciones
n_uniq=Cundo tiene una nica solucin?
n_none=Cundo no tiene solucin?
n_many=Cundo tiene infinitas soluciones?

!if $thisstep=$empty
 !goto next
!endif

modif=!item 1 of $thisstep
origin=!item 2 of $thisstep
dest=!item 3 of $thisstep
coef=!item 4 to -1 of $thisstep

!if $modif=add
 desc=aadir $coef veces la ecuacin ($origin) a la ecuacin ($dest)
 !goto next
!endif

!if $modif=multiply
 desc=multiplicar la ecuacin ($dest) por $coef
 !goto next
!endif

!if $modif=exchange
 desc=intercambiar la ecuacin ($origin) y ($dest)
 !goto next
!endif

:next
sst=!line $step+1 of $steplist
!if $sst=$empty
 !exit
!endif

modif=!item 1 of $sst
origin=!item 2 of $sst
dest=!item 3 of $sst
coef=!item 4 to -1 of $sst

!if $modif=add
 adesc=aadi $coef veces la ecuacin ($origin) a la ecuacin ($dest)
 !exit
!endif

!if $modif=multiply
 adesc=multiplic por $coef la ecuacin ($dest)
 !exit
!endif

!if $modif=exchange
 adesc=intercambi las ecuaciones ($origin) y ($dest)
 !exit
!endif
