When using algorithmx you get "Algorithm 1 algorithm name". How can you change the label "Algorithm"? I do not mean individually for each algorithm, but instead changing it globally the whole latex project. The reason for this is because I rather want it to say "algoritme", which is algorithm in Norwegian.

\documentclass{article}
\usepackage[norsk]{babel}
\usepackage{tabularx}
\usepackage{apacite}
\usepackage{hyperref}
\usepackage{enumerate}
\usepackage[normalem]{ulem}
\usepackage{color}
\usepackage[noend]{algpseudocode}
\usepackage{algorithm}
\begin{document}
\begin{algorithm}
\begin{algorithmic}[1]
\State a
\label{a}
\caption{name}
\end{algorithmic}
\end{algorithm}
\end{document}

algorithmicxprovides\ALG@name. – Werner Feb 28 '15 at 17:35