You could define a new LaTeX environment called, say, explanation. Entering a LaTeX environment automatically starts a new TeX group. This environment first redefines the macro \proofname and then opens a proof environment. At the end of the explanation environment, the proof environment is closed. This approach "works" because the scope of the redefinition of the \proofname is confined to the current TeX group and is therefore "forgotten" when the explanation environment ends.

\documentclass{article}
\usepackage{amsthm}
\newcommand\explanationname{Explanation} % could be made language-dependent
\newenvironment{explanation}%
{\renewcommand\proofname\explanationname%
\begin{proof}}%
{\end{proof}}
\begin{document}
\begin{explanation} bla bla bla \end{explanation}
\begin{proof} ble ble ble \end{proof}
\begin{explanation} bli bli bli \end{explanation}
\end{document}
\renewcommand\proofname{Explanation}a try. – Mico Nov 13 '22 at 06:50proofenvironment. Let me post a longer answer. – Mico Nov 13 '22 at 06:53polyglossiapackage? – Evan Aad Nov 13 '22 at 06:58polyglossiavariation? – Evan Aad Nov 13 '22 at 07:37babelorpolyglossia, but so far without luck. I've generalized the answer to use a macro called\explanationnameinstead of hard-coding the name of the environment. Maybe that'll be useful in making language-specific adaptations. – Mico Nov 13 '22 at 07:45