<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Italian arşivleri -</title>
	<atom:link href="https://www.sulekaya.com.tr/de/category/italian/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.sulekaya.com.tr/de/category/italian/</link>
	<description></description>
	<lastBuildDate>Tue, 25 Jul 2023 10:59:44 +0000</lastBuildDate>
	<language>de-DE</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.4.1</generator>

<image>
	<url>https://www.sulekaya.com.tr/wp-content/uploads/2023/02/Sule-KAYA-antalya-en-iyi-makale-yazari-1-480x480.png</url>
	<title>Italian arşivleri -</title>
	<link>https://www.sulekaya.com.tr/de/category/italian/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Italian Food</title>
		<link>https://www.sulekaya.com.tr/de/italian-food/</link>
					<comments>https://www.sulekaya.com.tr/de/italian-food/#respond</comments>
		
		<dc:creator><![CDATA[Şule Kaya]]></dc:creator>
		<pubDate>Sun, 19 Feb 2023 16:56:00 +0000</pubDate>
				<category><![CDATA[Italian]]></category>
		<guid isPermaLink="false">http://www.sulekaya.com.tr/2022/10/28/italian-food/</guid>

					<description><![CDATA[<div class="entry-summary">
Contrary to popular belief, Lorem Ipsum is not simply random text. but the majority have suffered alteration
</div>
<div class="link-more-container"><a href="https://www.sulekaya.com.tr/de/italian-food/" class="link-more button" aria-label="Continue reading Italian Food">Continue reading&#8230;</a></div>
<p><a rel="nofollow" href="https://www.sulekaya.com.tr/de/italian-food/">Italian Food</a> yazısı ilk önce <a rel="nofollow" href="https://www.sulekaya.com.tr/de/antalya-web-tasarim-2"></a> üzerinde ortaya çıktı.</p>
]]></description>
										<content:encoded><![CDATA[


<h3>nOODLES</h3>


<p>There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don&#8217;t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn&#8217;t anything embarrassing hidden in the middle of text. All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.</p>


<p>There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don&#8217;t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn&#8217;t anything embarrassing hidden in the middle of text. All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.</p>


Lorem ipsum dolor sit amet Lorem ipsum dolor sit amet, Lorem ipsum dolor sit amet Lorem ipsum dolor sit amet.There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form


<p>There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don&#8217;t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn&#8217;t anything embarrassing hidden in the middle of text. All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. </p>





<?php
$current_language = get_locale();
if ($current_language === "tr_TR") { 
	$lang = "tr-TR";
	$voice = "Google Türkçe";
	$sbutton= "Başlat/Devam Et";
	$stopbutton="Dur";							  
								   }
elseif ($current_language === "de_DE") {
		$lang = "de-DE";
	$voice = "Google Deutsch";
	$sbutton= "Start/Weitermachen";
	$stopbutton="Stoppen";
}
else {	
		$lang = "en-EN";
	$voice = "Google US English";
		$sbutton= "Start/Contunie";
	$stopbutton="Stop";
								
}
?>
<script>

  var isSpeaking = false;
  var utterance;
  var synth = window.speechSynthesis;
  var metinDiv = document.querySelector('.entry-content.entry-content-singular');
  var paragraflar = metinDiv.querySelectorAll('p');
  var tamMetin = "";

  // Paragraf metinlerini birleştirin
  paragraflar.forEach(function (paragraf) {
    tamMetin += paragraf.textContent + " ";
  });

  function speak() {
    if (synth.paused || !isSpeaking) {
      if ('speechSynthesis' in window) {
        utterance = new SpeechSynthesisUtterance();
        utterance.text = tamMetin;
        utterance.lang =  '<?php echo $lang; ?>'

        utterance.voiceURI = '<?php echo $voice; ?>';
        utterance.voice = speechSynthesis.getVoices().find(function (voice) {
          return voice.name == '<?php echo $voice; ?>' && voice.gender == 'male';
        });

        utterance.onend = function () {
          isSpeaking = false;
        };

        // Konuşmayı başlat
        synth.speak(utterance);
        isSpeaking = true;

        var durdurBtn = document.getElementById('durdur');
        durdurBtn.addEventListener('click', function () {
          synth.pause();
          isSpeaking = false;
        });
      } else {
        alert('Web Speech API, tarayıcınız tarafından desteklenmiyor.');
      }
    } else {
      synth.pause();
      isSpeaking = false;
    }
  }

  function toggleSpeech() {
    if (isSpeaking) {
      synth.resume();
    } else {
      speak();
    }
  }

  // Sesler yüklendiğinde çalışacak olan olay dinleyicisi
  window.speechSynthesis.onvoiceschanged = function () {
    // Bu noktada metin sentezleyici hazır olduğu için başlamaya hazırız
    toggleSpeech();
  };
</script>
<button onclick="toggleSpeech()"><?php echo $sbutton; ?></button>
<button id="durdur"> <?php echo $stopbutton; ?></button>

<p><a rel="nofollow" href="https://www.sulekaya.com.tr/de/italian-food/">Italian Food</a> yazısı ilk önce <a rel="nofollow" href="https://www.sulekaya.com.tr/de/antalya-web-tasarim-2"></a> üzerinde ortaya çıktı.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.sulekaya.com.tr/de/italian-food/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
