Highchartsグラフがあり、中にテキストがあります。選択した言語に応じてこのテキストを変更するにはどうすればよいですか?これが私のコードです:
var chart;
chart = new Highcharts.Chart({
(...)
subtitle: {
text: document.ontouchstart === undefined ?
'Click and drag in the plot area to zoom in' :
'Drag your finger over the plot to zoom in'
}
(...)
私のen.ymlファイルは次のようになります:
en:
actions:
zoom: "Click and drag in the plot area to zoom in"
私が試してみました
t("actions.zoom")
と
<% t "actions.zoom" %>
しかし、それらはAjax内では機能していません。どうすればいいですか?