Localize the shared plot helpers for Spanish (#257)
The frequency/band axes, the shifted-reference rating figure, the
band-level bar chart, the facade x-axis, the ISO 717-2 500 Hz annotation
and the time axis in _plot/common.py are reused by every domain's
.plot() renderer. They previously always drew their axis labels and
legend entries in English, so several ES renderers ended up with a
mixed-language figure (an English "Frequency [Hz]" xlabel next to a
Spanish title), and a few had no override at all for it.
I give these shared helpers their own language keyword and small
_STRINGS/_t table, and thread language=language through every call
site across the domain plot modules. I also drop the now-redundant
post-hoc "if language == 'es': ax.set_xlabel(...)" patches that some
renderers used to work around the missing parameter.
English output is unchanged (_t is a no-op for language="en"), verified
against the committed documentation figures.
authored by