Call us: 029 200 993 78

Phone lines open 8.00am to 6.30pm

Hannah Moore

Midwife
Female

// Wait for the page content to be fully loaded document.addEventListener('DOMContentLoaded', function() { // Find the Welsh translation button by its ID var translateButton = document.getElementById('translate-to-welsh-btn'); // Check if the button actually exists on the page if (translateButton) { // Add a click event listener to the button translateButton.addEventListener('click', function() { // Set the Google Translate cookie // '/auto/cy' means translate from auto-detected language to Welsh ('cy') // 'path=/' ensures the cookie applies to the whole site document.cookie = 'googtrans=/auto/cy; path=/'; // Reload the page to apply the translation location.reload(); }); } });