We have a small indicator on our website that shows the current status by using teh followinG script:
$(function(){
var sp = new StatusPage.page({ page : "abcdefgh123" });
sp.summary({
success : function(data) {
var status = data.status.indicator;
var title = data.status.description;
$( ".indicator" ).attr("title", title);
$(".indicatorIcon").addClass(status);
$( ".statusText" ).append(title);
}
});
});
Would it somehow be possible to translate the status.description?
We do offer an integration with a company called Localize, which we cover here: https://help.statuspage.io/help/translate-your-page-with-localize-dot-js
Let me know if this is helpful or if you have any questions about this.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.