All Systems Operational
Reports and Dashboards
Operational
Third party services
Operational
Point of Sale
Operational
Operational
Degraded Performance
Partial Outage
Major Outage
Maintenance
').insertBefore('.page-status h2');
}
}
function replaceStringsWithTranslations(translations) {
const textNodes = [];
const walker = document.createTreeWalker(
document.body,
NodeFilter.SHOW_TEXT,
null,
false
);
let node;
while (node = walker.nextNode()) {
textNodes.push(node);
}
// Sort translation keys by length in descending order (longest first)
// This prevents shorter strings from being replaced within longer strings
const sortedKeys = Object.keys(translations).sort((a, b) => b.length - a.length);
textNodes.forEach(textNode => {
let content = textNode.nodeValue;
if (!content || content.trim() === '') return;
sortedKeys.forEach(key => {
if (content.includes(key)) {
content = content.replace(key, translations[key]);
textNode.nodeValue = content;
}
});
});
}
function getTranslationsForUserLanguage(translationsMap) {
// Get user's preferred languages
const userLanguages = navigator.languages || [navigator.language];
// Find the first language that has translations available
for (const lang of userLanguages) {
// Try exact match first (e.g. "en-US")
if (translationsMap[lang]) {
return translationsMap[lang];
}
// Then try simplified match (e.g. "en")
const simpleLang = lang.split('-')[0]; // Convert e.g. "en-US" to "en"
if (translationsMap[simpleLang]) {
return translationsMap[simpleLang];
}
}
// No translations found
return null;
}
// TRANSLATIONS START HERE
const translationsMap = {
"cs": {
"My Shopify Status": "Můj stav Shopify",
"Detailed status for your store can be viewed": "Podrobný stav vašeho obchodu si můžete prohlédnout",
"here": "zde",
"All Systems Operational": "Všechny systémy jsou funkční",
"Operational": "V provozu",
"Degraded Performance": "Snížený výkon",
"Partial Outage": "Částečný výpadek",
"Major Outage": "Velký výpadek",
"Maintenance": "Údržba",
"Some issues affecting a small percentage of stores may not be reflected here.": "V této části se nemusí projevit některé problémy, které ovlivňují malé procento obchodů.",
"Having trouble?": "Máte potíže?",
"Contact support": "Kontaktovat podporu",
"Incident History": "Historie incidentů",
"No incidents reported for this month.": "Tento měsíc nebyly nahlášeny žádné incidenty.",
"January": "Leden",
"February": "Únor",
"March": "Březen",
"April": "Duben",
"May": "Květen",
"June": "Červen",
"July": "Červenec",
"August": "Srpen",
"September": "Září",
"October": "Říjen",
"November": "Listopad",
"December": "Prosinec"
},
"da": {
"My Shopify Status": "Min Shopify-status",
"Detailed status for your store can be viewed": "Detaljeret status for din butik kan ses",
"here": "her",
"All Systems Operational": "Alle systemer er i drift",
"Operational": "Funktionel",
"Degraded Performance": "Forringet ydeevne",
"Partial Outage": "Delvis afbrydelse",
"Major Outage": "Større nedbrud",
"Maintenance": "Vedligeholdelse",
"Some issues affecting a small percentage of stores may not be reflected here.": "Nogle problemer, der påvirker en mindre procentdel af butikker, vises muligvis ikke her.",
"Having trouble?": "Oplever du problemer?",
"Contact support": "Kontakt support",
"Incident History": "Hændelseshistorik",
"No incidents reported for this month.": "Ingen hændelser rapporteret for denne måned.",
"January": "Januar",
"February": "Februar",
"March": "Marts",
"April": "April",
"May": "Maj",
"June": "Juni",
"July": "Juli",
"August": "August",
"September": "September",
"October": "Oktober",
"November": "November",
"December": "December"
},
"de": {
"My Shopify Status": "Mein Shopify-Status",
"Detailed status for your store can be viewed": "Der ausführliche Status für deinen Shop kann eingesehen werden",
"here": "hier",
"All Systems Operational": "Alle Systeme einsatzbereit",
"Operational": "In Betrieb",
"Degraded Performance": "Eingeschränkte Leistung",
"Partial Outage": "Teilweiser Ausfall",
"Major Outage": "Schwerer Ausfall",
"Maintenance": "Wartungsarbeiten",
"Some issues affecting a small percentage of stores may not be reflected here.": "Einige Probleme, die nur einen kleinen Prozentsatz von Shops betreffen, werden hier möglicherweise nicht wiedergegeben.",
"Having trouble?": "Gibt es Probleme?",
"Contact support": "Support kontaktieren",
"Incident History": "Vorfallsverlauf",
"No incidents reported for this month.": "Diesen Monat wurden keine Vorfälle gemeldet",
"January": "Januar",
"February": "Februar",
"March": "März",
"April": "April",
"May": "Mai",
"June": "Juni",
"July": "Juli",
"August": "August",
"September": "September",
"October": "Oktober",
"November": "November",
"December": "Dezember"
},
"es": {
"My Shopify Status": "Mi estado en Shopify",
"Detailed status for your store can be viewed": "Puedes consultar el estado detallado de tu tienda",
"here": "aquí",
"All Systems Operational": "Todos los sistemas están operativos",
"Operational": "Operativo",
"Degraded Performance": "Rendimiento deficiente",
"Partial Outage": "Interrupción parcial",
"Major Outage": "Interrupción importante",
"Maintenance": "Mantenimiento",
"Some issues affecting a small percentage of stores may not be reflected here.": "Es posible que aquí no se reflejen algunos problemas que afectan a un pequeño porcentaje de las tiendas.",
"Having trouble?": "¿Tienes problemas?",
"Contact support": "Contacta con atención al cliente",
"Incident History": "Historial de incidentes",
"No incidents reported for this month.": "No se notificaron incidentes este mes.",
"January": "Enero",
"February": "Febrero",
"March": "Marzo",
"April": "Abril",
"May": "Mayo",
"June": "Junio",
"July": "Julio",
"August": "Agosto",
"September": "Septiembre",
"October": "Octubre",
"November": "Noviembre",
"December": "Diciembre"
},
"fi": {
"My Shopify Status": "Shopify-tilani",
"Detailed status for your store can be viewed": "Kauppasi tarkempia tilatietoja voidaan tarkastella",
"here": "tästä",
"All Systems Operational": "Kaikki järjestelmät ovat toiminnassa",
"Operational": "Toiminnallinen",
"Degraded Performance": "Heikentynyt tehokkuus",
"Partial Outage": "Osittainen käyttökatko",
"Major Outage": "Laajamittainen käyttökatko",
"Maintenance": "Ylläpito",
"Some issues affecting a small percentage of stores may not be reflected here.": "Ongelmat, jotka vaikuttavat pieneen prosenttiosuuteen kaupoista, eivät välttämättä näy tässä.",
"Having trouble?": "Ongelmia?",
"Contact support": "Ota yhteyttä tukeen",
"Incident History": "Tapaushistoria",
"No incidents reported for this month.": "Ei ilmoitettuja tapauksia tässä kuussa.",
"January": "Tammikuu",
"February": "Helmikuu",
"March": "Maaliskuu",
"April": "Huhtikuu",
"May": "Toukokuu",
"June": "Kesäkuu",
"July": "Heinäkuu",
"August": "Elokuu",
"September": "Syyskuu",
"October": "Lokakuu",
"November": "Marraskuu",
"December": "Joulukuu"
},
"fr": {
"My Shopify Status": "Mon statut Shopify",
"Detailed status for your store can be viewed": "Vous pouvez consulter le statut détaillé de votre boutique",
"here": "ici",
"All Systems Operational": "Tous les systèmes sont opérationnels",
"Operational": "Opérationnel",
"Degraded Performance": "Performance dégradée",
"Partial Outage": "Panne partielle",
"Major Outage": "Panne majeure",
"Maintenance": "Maintenance",
"Some issues affecting a small percentage of stores may not be reflected here.": "Il est possible que certains problèmes affectant un petit pourcentage de boutiques ne soient pas indiqués ici.",
"Having trouble?": "Vous avez des difficultés ?",
"Contact support": "Contacter l’assistance",
"Incident History": "Historique des incidents",
"No incidents reported for this month.": "Aucun incident n’a été signalé ce mois-ci.",
"January": "Janvier",
"February": "Février",
"March": "Mars",
"April": "Avril",
"May": "Mai",
"June": "Juin",
"July": "Juillet",
"August": "Août",
"September": "Septembre",
"October": "Octobre",
"November": "Novembre",
"December": "Décembre"
},
"hi": {
"My Shopify Status": "मेरी Shopify स्थिति",
"Detailed status for your store can be viewed": "आपके स्टोर की विस्तृत स्थिति",
"here": "यहाँ देखी जा सकती है",
"All Systems Operational": "सभी सिस्टम सही ढंग से काम कर रहे हैं",
"Operational": "काम कर रहे हैं",
"Degraded Performance": "प्रदर्शन खराब है",
"Partial Outage": "आंशिक आउटेज",
"Major Outage": "गंभीर आउटेज",
"Maintenance": "रखरखाव",
"Some issues affecting a small percentage of stores may not be reflected here.": "कुछ समस्याएँ स्टोर के एक छोटे प्रतिशत को प्रभावित कर रही हैं, जो कि शायद यहाँ दिखाई नहीं गई हैं.",
"Having trouble?": "कोई समस्या है?",
"Contact support": "सहायता के लिए संपर्क करें",
"Incident History": "घटनाओं का इतिहास",
"No incidents reported for this month.": "इस माह किसी घटना की रिपोर्ट नहीं है",
"January": "जनवरी",
"February": "फ़रवरी",
"March": "मार्च",
"April": "अप्रैल",
"May": "मई",
"June": "जून",
"July": "जुलाई",
"August": "अगस्त",
"September": "सितंबर",
"October": "अक्टूबर",
"November": "नवंबर",
"December": "दिसंबर"
},
"it": {
"My Shopify Status": "Il mio stato su Shopify",
"Detailed status for your store can be viewed": "Lo stato dettagliato del tuo negozio è disponibile",
"here": "qui",
"All Systems Operational": "Tutti i sistemi operativi",
"Operational": "Operativo",
"Degraded Performance": "Performance ridotta",
"Partial Outage": "Interruzione parziale",
"Major Outage": "Interruzione importante",
"Maintenance": "Manutenzione",
"Some issues affecting a small percentage of stores may not be reflected here.": "Alcuni problemi che interessano una piccola percentuale di negozi potrebbero non essere visualizzati qui.",
"Having trouble?": "Stai riscontrando problemi?",
"Contact support": "Contatta l'assistenza",
"Incident History": "Cronologia degli incidenti",
"No incidents reported for this month.": "Non sono stati segnalati incidenti per questo mese.",
"January": "Gennaio",
"February": "Febbraio",
"March": "Marzo",
"April": "Aprile",
"May": "Maggio",
"June": "Giugno",
"July": "Luglio",
"August": "Agosto",
"September": "Settembre",
"October": "Ottobre",
"November": "Novembre",
"December": "Dicembre"
},
"ja": {
"My Shopify Status": "私のShopifyステータス",
"Detailed status for your store can be viewed": "ストアの詳細なステータスを確認できる",
"here": "こちら",
"All Systems Operational": "すべてのシステムが稼働中",
"Operational": "稼働",
"Degraded Performance": "低下したパフォーマンス",
"Partial Outage": "部分的な停止",
"Major Outage": "全面的な停止",
"Maintenance": "メンテナンス",
"Some issues affecting a small percentage of stores may not be reflected here.": "ごく一部のストアに影響を与えている問題は、ここには反映されていない可能性があります。",
"Having trouble?": "問題が発生していますか?",
"Contact support": "サポートに問い合わせる",
"Incident History": "事件の履歴",
"No incidents reported for this month.": "今月は事件は報告されていない。",
"January": "1月",
"February": "2月",
"March": "3月",
"April": "4月",
"May": "5月",
"June": "6月",
"July": "7月",
"August": "8月",
"September": "9月",
"October": "10月",
"November": "11月",
"December": "12月"
},
"ko": {
"My Shopify Status": "내 Shopify 상태",
"Detailed status for your store can be viewed": "스토어에 대한 자세한 상태를 확인할 수 있습니다.",
"here": "여기",
"All Systems Operational": "모든 시스템 운영 중",
"Operational": "운영 중",
"Degraded Performance": "성능 저하",
"Partial Outage": "부분 중단",
"Major Outage": "전반적인 중단",
"Maintenance": "유지 관리",
"Some issues affecting a small percentage of stores may not be reflected here.": "스토어에 적은 비중으로 영향을 주는 일부 문제는 여기에 반영되지 않을 수 있습니다.",
"Having trouble?": "문제가 있습니까?",
"Contact support": "지원팀에 문의하기",
"Incident History": "사고 기록",
"No incidents reported for this month.": "이번 달에는 사고가 신고되지 않았습니다.",
"January": "1월",
"February": "2월",
"March": "3월",
"April": "4월",
"May": "5월",
"June": "6월",
"July": "7월",
"August": "8월",
"September": "9월",
"October": "10월",
"November": "11월",
"December": "12월"
},
"ms": {
"My Shopify Status": "Status Shopify Saya",
"Detailed status for your store can be viewed": "Status terperinci untuk kedai anda boleh dilihat",
"here": "di sini",
"All Systems Operational": "Semua Sistem Beroperasi",
"Operational": "Beroperasi",
"Degraded Performance": "Prestasi Merosot",
"Partial Outage": "Gangguan Separa",
"Major Outage": "Gangguan Besar-besaran",
"Maintenance": "Penyelenggaraan",
"Some issues affecting a small percentage of stores may not be reflected here.": "Beberapa masalah yang menjejaskan sebilangan kecil kedai mungkin tidak dapat dilihat di sini.",
"Having trouble?": "Ada masalah?",
"Contact support": "Hubungi sokongan",
"Incident History": "Sejarah Insiden",
"No incidents reported for this month.": "Tiada insiden dilaporkan untuk bulan ini.",
"January": "Januari",
"February": "Februari",
"March": "Mac",
"April": "April",
"May": "Mei",
"June": "Jun",
"July": "Julai",
"August": "Ogos",
"September": "September",
"October": "Oktober",
"November": "November",
"December": "Disember"
},
"nb": {
"My Shopify Status": "Min Shopify-status",
"Detailed status for your store can be viewed": "Du får se en detaljert status for butikken",
"here": "her",
"All Systems Operational": "Alle systemer er i drift",
"Operational": "I drift",
"Degraded Performance": "Nedsatt ytelse",
"Partial Outage": "Delvis driftsstans",
"Major Outage": "Stor driftsstans",
"Maintenance": "Vedlikehold",
"Some issues affecting a small percentage of stores may not be reflected here.": "Enkelte problemer som kun påvirker få butikker, vises kanskje ikke her.",
"Having trouble?": "Har du problemer?",
"Contact support": "Kontakt brukerstøtten",
"Incident History": "Hendelseslogg",
"No incidents reported for this month.": "Ingen hendelser er rapportert for denne måneden.",
"January": "Januar",
"February": "Februar",
"March": "Mars",
"April": "April",
"May": "Mai",
"June": "Juni",
"July": "Juli",
"August": "August",
"September": "September",
"October": "Oktober",
"November": "November",
"December": "Desember"
},
"nl": {
"My Shopify Status": "Mijn Shopify-status",
"Detailed status for your store can be viewed": "Je kunt een gedetailleerde status van je winkel bekijken",
"here": "hier",
"All Systems Operational": "Alle systemen operationeel",
"Operational": "Operationeel",
"Degraded Performance": "Verminderde prestaties",
"Partial Outage": "Gedeeltelijke storing",
"Major Outage": "Grote storing",
"Maintenance": "Onderhoud",
"Some issues affecting a small percentage of stores may not be reflected here.": "Bepaalde problemen die een klein percentage van de winkels treffen, worden hier mogelijk niet weergegeven.",
"Having trouble?": "Ervaar je problemen?",
"Contact support": "Neem contact op met ondersteuning",
"Incident History": "Incidentgeschiedenis",
"No incidents reported for this month.": "Geen incidenten gemeld voor deze maand.",
"January": "januari",
"February": "februari",
"March": "maart",
"April": "april",
"May": "mei",
"June": "juni",
"July": "juli",
"August": "augustus",
"September": "september",
"October": "oktober",
"November": "november",
"December": "december"
},
"pl": {
"My Shopify Status": "Mój status Shopify",
"Detailed status for your store can be viewed": "Szczegółowy status Twojego sklepu możesz sprawdzić",
"here": "tutaj",
"All Systems Operational": "Wszystkie systemy są sprawne",
"Operational": "Operacyjny",
"Degraded Performance": "Zmniejszona wydajność",
"Partial Outage": "Częściowy przestój",
"Major Outage": "Poważna awaria",
"Maintenance": "Prace konserwacyjne",
"Some issues affecting a small percentage of stores may not be reflected here.": "Niektóre problemy dotyczące niewielkiego odsetka sklepów mogą nie być tutaj przedstawione.",
"Having trouble?": "Masz problem?",
"Contact support": "Skontaktuj się z pomocą techniczną",
"Incident History": "Historia incydentów",
"No incidents reported for this month.": "W tym miesiącu nie zgłoszono żadnych incydentów.",
"January": "Styczeń",
"February": "Luty",
"March": "Marzec",
"April": "Kwiecień",
"May": "Maj",
"June": "Czerwiec",
"July": "Lipiec",
"August": "Sierpień",
"September": "Wrzesień",
"October": "Październik",
"November": "Listopad",
"December": "Grudzień"
},
"pt-BR": {
"My Shopify Status": "Status da minha Shopify",
"Detailed status for your store can be viewed": "É possível ver o status detalhado da sua loja",
"here": "aqui",
"All Systems Operational": "Todos os sistemas estão operacionais",
"Operational": "Operacional",
"Degraded Performance": "Desempenho reduzido",
"Partial Outage": "Interrupção parcial",
"Major Outage": "Interrupção total",
"Maintenance": "Manutenção",
"Some issues affecting a small percentage of stores may not be reflected here.": "Alguns problemas que afetam um pequeno percentual das lojas podem não aparecer aqui.",
"Having trouble?": "Problemas?",
"Contact support": "Entre em contato com o atendimento",
"Incident History": "Histórico de incidentes",
"No incidents reported for this month.": "Não há incidentes relatados este mês.",
"January": "Janeiro",
"February": "Fevereiro",
"March": "Março",
"April": "Abril",
"May": "Maio",
"June": "Junho",
"July": "Julho",
"August": "Agosto",
"September": "Setembro",
"October": "Outubro",
"November": "Novembro",
"December": "Dezembro"
},
"pt-PT": {
"My Shopify Status": "Estado de A minha Shopify",
"Detailed status for your store can be viewed": "Pode ser consultado o estado detalhado da sua loja",
"here": "aqui",
"All Systems Operational": "Todos os sistemas estão operacionais",
"Operational": "Operacional",
"Degraded Performance": "Degradação do desempenho",
"Partial Outage": "Interrupção parcial",
"Major Outage": "Interrupção grave",
"Maintenance": "Manutenção",
"Some issues affecting a small percentage of stores may not be reflected here.": "Alguns problemas que afetam uma pequena percentagem de lojas podem não estar refletidos aqui.",
"Having trouble?": "Está a ter problemas?",
"Contact support": "Contactar assistência",
"Incident History": "Histórico de incidentes",
"No incidents reported for this month.": "Nenhum incidente reportado para este mês.",
"January": "janeiro",
"February": "fevereiro",
"March": "março",
"April": "abril",
"May": "maio",
"June": "junho",
"July": "julho",
"August": "agosto",
"September": "setembro",
"October": "outubro",
"November": "novembro",
"December": "dezembro"
},
"sv": {
"My Shopify Status": "Min Shopify-status",
"Detailed status for your store can be viewed": "Utförlig status för din butik kan visas",
"here": "här",
"All Systems Operational": "Alla system är i drift",
"Operational": "Operativ",
"Degraded Performance": "Försämrad prestanda",
"Partial Outage": "Partiellt driftsavbrott",
"Major Outage": "Större driftsavbrott",
"Maintenance": "Underhåll",
"Some issues affecting a small percentage of stores may not be reflected here.": "Vissa ärenden som endast påverkar en liten andel av butikerna kanske inte syns här.",
"Having trouble?": "Har du problem?",
"Contact support": "Kontakta support",
"Incident History": "Incidenthistorik",
"No incidents reported for this month.": "Inga incidenter rapporterade den här månaden.",
"January": "januari",
"February": "februari",
"March": "mars",
"April": "april",
"May": "maj",
"June": "juni",
"July": "juli",
"August": "augusti",
"September": "september",
"October": "oktober",
"November": "november",
"December": "december"
},
"th": {
"My Shopify Status": "สถานะ Shopify ของฉัน",
"Detailed status for your store can be viewed": "สามารถดูสถานะร้านค้าโดยละเอียดได้",
"here": "ที่นี่",
"All Systems Operational": "ทุกระบบทำงานได้ตามปกติ",
"Operational": "ทำงานได้",
"Degraded Performance": "ประสิทธิภาพลดลง",
"Partial Outage": "หยุดให้บริการบางส่วน",
"Major Outage": "หยุดให้บริการครั้งใหญ่",
"Maintenance": "การซ่อมบำรุง",
"Some issues affecting a small percentage of stores may not be reflected here.": "ปัญหาบางประการที่ส่งผลต่อร้านค้าส่วนน้อยอาจไม่แสดงขึ้นที่นี่",
"Having trouble?": "พบเจอปัญหาใช่ไหม",
"Contact support": "ติดต่อฝ่ายช่วยเหลือ",
"Incident History": "ประวัติเหตุการณ์",
"No incidents reported for this month.": "ไม่มีรายงานเหตุการณ์ในเดือนนี้",
"January": "มกราคม",
"February": "กุมภาพันธ์",
"March": "มีนาคม",
"April": "เมษายน",
"May": "พฤษภาคม",
"June": "มิถุนายน",
"July": "กรกฎาคม",
"August": "สิงหาคม",
"September": "กันยายน",
"October": "ตุลาคม",
"November": "พฤศจิกายน",
"December": "ธันวาคม"
},
"tr": {
"My Shopify Status": "Shopify Durumum",
"Detailed status for your store can be viewed": "Mağazanızın ayrıntılı durumu görüntülenebilir",
"here": "buradan",
"All Systems Operational": "Tüm Sistemler Çalışıyor",
"Operational": "Çalışır Durumda",
"Degraded Performance": "Düşük Performans",
"Partial Outage": "Kısmi Kesinti",
"Major Outage": "Büyük Kesinti",
"Maintenance": "Bakım",
"Some issues affecting a small percentage of stores may not be reflected here.": "Mağazaların küçük bir yüzdesini etkileyen bazı sorunlar burada gösterilmeyebilir.",
"Having trouble?": "Sorun mu yaşıyorsunuz?",
"Contact support": "Destek ekibiyle iletişime geçin",
"Incident History": "Olay Geçmişi",
"No incidents reported for this month.": "Bu ay hiçbir olay bildirilmedi.",
"January": "Ocak",
"February": "Şubat",
"March": "Mart",
"April": "Nisan",
"May": "Mayıs",
"June": "Haziran",
"July": "Temmuz",
"August": "Ağustos",
"September": "Eylül",
"October": "Ekim",
"November": "Kasım",
"December": "Aralık"
},
"vi": {
"My Shopify Status": "Trạng thái Shopify của tôi",
"Detailed status for your store can be viewed": "Bạn có thể xem trạng thái chi tiết cho cửa hàng của bạn",
"here": "tại đây",
"All Systems Operational": "Tất cả hệ thống đang hoạt động bình thường",
"Operational": "Hoạt động",
"Degraded Performance": "Hiệu suất giảm sút",
"Partial Outage": "Gián đoạn dịch vụ một phần",
"Major Outage": "Sự cố nghiêm trọng",
"Maintenance": "Bảo trì",
"Some issues affecting a small percentage of stores may not be reflected here.": "Một số sự cố ảnh hưởng đến tỷ lệ nhỏ cửa hàng có thể không được hiển thị tại đây.",
"Having trouble?": "Bạn đang gặp vấn đề?",
"Contact support": "Liên hệ với bộ phận hỗ trợ",
"Incident History": "Lịch sử sự cố",
"No incidents reported for this month.": "Không có sự cố nào được báo cáo trong tháng này.",
"January": "Tháng 1",
"February": "Tháng 2",
"March": "Tháng 3",
"April": "Tháng 4",
"May": "Tháng 5",
"June": "Tháng 6",
"July": "Tháng 7",
"August": "Tháng 8",
"September": "Tháng 9",
"October": "Tháng 10",
"November": "Tháng 11",
"December": "Tháng 12"
},
"zh-CN": {
"My Shopify Status": "我的 Shopify 状态",
"Detailed status for your store can be viewed": "可查看您商店的详细状态信息",
"here": "此处",
"All Systems Operational": "所有系统均正常运行",
"Operational": "正常运营",
"Degraded Performance": "性能降级",
"Partial Outage": "部分中断",
"Major Outage": "严重中断",
"Maintenance": "维护",
"Some issues affecting a small percentage of stores may not be reflected here.": "某些影响小部分商店的问题在这里可能没有反映出来。",
"Having trouble?": "遇到问题?",
"Contact support": "联系支持团队",
"Incident History": "事件历史记录",
"No incidents reported for this month.": "本月未报告任何事件。",
"January": "一月",
"February": "二月",
"March": "三月",
"April": "四月",
"May": "五月",
"June": "六月",
"July": "七月",
"August": "八月",
"September": "九月",
"October": "十月",
"November": "十一月",
"December": "十二月"
},
"zh-TW": {
"My Shopify Status": "我的 Shopify 狀態",
"Detailed status for your store can be viewed": "可檢視商店的詳細狀態",
"here": "在此",
"All Systems Operational": "所有系統皆可運作",
"Operational": "運作中",
"Degraded Performance": "成效降低",
"Partial Outage": "部分中斷",
"Major Outage": "重大中斷",
"Maintenance": "維護",
"Some issues affecting a small percentage of stores may not be reflected here.": "對商店影響不大的問題可能不會在此顯示。",
"Having trouble?": "發生問題嗎?",
"Contact support": "聯絡支援服務",
"Incident History": "事件記錄",
"No incidents reported for this month.": "本月無檢舉事件。",
"January": "1 月",
"February": "2 月",
"March": "3 月",
"April": "4 月",
"May": "5 月",
"June": "6 月",
"July": "7 月",
"August": "8 月",
"September": "9 月",
"October": "10 月",
"November": "11 月",
"December": "12 月"
}
}
// TRANSLATIONS END HERE
document.addEventListener('DOMContentLoaded', function() {
applyShopifyCustomizations();
const translations = getTranslationsForUserLanguage(translationsMap);
if (translations) {
replaceStringsWithTranslations(translations);
}
});