I have a bilingual text in two columns using paracol. I want to number them in parallel while using switchcolumn commands, as shown below. How can I do this?
\documentclass[10pt,a4paper]{article}
\usepackage[utf8x]{inputenc}
\usepackage{ucs}
\usepackage[T1]{fontenc}
\usepackage{paracol}
\begin{document}
I want this,
\begin{paracol}{2}
\begin{enumerate}
\item Item.
\item Item
\end{enumerate}
\switchcolumn
\begin{enumerate}
\item Item.
\item Item 2.
\end{enumerate}
\end{paracol}
which is tedious.
\vspace{2cm}
I do not want this:
\begin{paracol}{2}
\begin{enumerate}
\item Item.
\switchcolumn
\item Item.
\switchcolumn*
\item Item.
\switchcolumn
\item Item 2.
\end{enumerate}
\end{paracol}
\end{document}
======= Edit =====
The problem with the first is that, when the second column has a much longer text, the next numbers in the two columns do not start at the same level, as shown below:

I want the two lists to be always at the same level.


