The MWE below gives error language@active@arg" has extra }.
\documentclass{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[english,slovene]{babel}%
\usepackage{tikz}
\usetikzlibrary{quotes}
\begin{document}
\begin{tikzpicture}
\draw (0,0) edge ["right", ->] (2,0);
\end{tikzpicture}
\end{document}
Cause for it is option slovenian in babel which seem to redefine " somehow (if I remove this option, MWE work fine). Please, help me fix this error.
