From e0070501e66ca4568ffbcd8dcaa55033580a805d Mon Sep 17 00:00:00 2001
From: Julian Smith <jules@op59.net>
Date: Fri, 22 Apr 2022 00:25:36 +0100
Subject: [PATCH 1/6] Nasal/multiplayer.nas: always enable multiplayer menu
 items when replaying.

This fixes bug 2731, where MP menu items were greyed out if we are not
connected to MP server, even if we are replaying a recording with MP aircraft.
---
 Nasal/multiplayer.nas | 13 ++++++++++---
 1 file changed, 10 insertions(+), 3 deletions(-)

diff --git a/Nasal/multiplayer.nas b/Nasal/multiplayer.nas
index 43cd70804..102575ba7 100644
--- a/Nasal/multiplayer.nas
+++ b/Nasal/multiplayer.nas
@@ -625,10 +625,15 @@ var model = {
 };
 
 var mp_mode_changed = func(n) {
-    var is_online = n.getBoolValue();
-    foreach (var menuitem;["mp-chat","mp-chat-menu","mp-list","mp-carrier"])
+    var is_online = getprop("/sim/multiplay/online");
+    var is_replaying = getprop("/sim/replay/replay-state");
+    
+    # Always activate multiplayer items if we are replaying, in case the
+    # recording contains MP info.
+    #
+    foreach (var menuitem; ["mp-chat","mp-chat-menu","mp-list","mp-carrier"])
     {
-        gui.menuEnable(menuitem, is_online);
+        gui.menuEnable(menuitem, is_online or is_replaying);
     }
 
     if (is_online) {
@@ -684,6 +689,8 @@ var mp_mode_changed = func(n) {
 
 model.init();
 setlistener("/sim/multiplay/online", mp_mode_changed, 1, 1);
+setlistener("/sim/replay/replay-state", mp_mode_changed, 1, 1);
+
 # Call-back to ensure we see our own messages.
 setlistener("/sim/multiplay/chat", chat_listener);
 

From c55c17dd6416628d6a9b9a75d25e727ebad2505e Mon Sep 17 00:00:00 2001
From: Julian Smith <jules@op59.net>
Date: Fri, 22 Apr 2022 20:35:52 +0100
Subject: [PATCH 2/6] Nasal/multiplayer.nas: always enable multiplayer chat
 when replaying.

This is an additional fix for bug 2731, ensuring that replay includes chat
messages even if we are not connected to an MP server.
---
 Nasal/multiplayer.nas | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Nasal/multiplayer.nas b/Nasal/multiplayer.nas
index 102575ba7..59588dbbe 100644
--- a/Nasal/multiplayer.nas
+++ b/Nasal/multiplayer.nas
@@ -636,7 +636,7 @@ var mp_mode_changed = func(n) {
         gui.menuEnable(menuitem, is_online or is_replaying);
     }
 
-    if (is_online) {
+    if (is_online or is_replaying) {
         if (getprop("/sim/multiplay/write-message-log") and (log_file == nil)) {
             var t = props.globals.getNode("/sim/time/real");
             if (t == nil)

From efe0b5267407fada8e825f7e7aa36fac44bfff1d Mon Sep 17 00:00:00 2001
From: Roman Ludwicki <romek21@op.pl>
Date: Fri, 22 Apr 2022 23:04:21 +0200
Subject: [PATCH 3/6] Fix autopilot multikey commands

Replace `AoA Hold` to `FPA Hold`
---
 Input/Keyboard/multikey.xml | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/Input/Keyboard/multikey.xml b/Input/Keyboard/multikey.xml
index c852014d3..5c2eec52d 100644
--- a/Input/Keyboard/multikey.xml
+++ b/Input/Keyboard/multikey.xml
@@ -875,24 +875,24 @@
 					<binding>
 						<command>nasal</command>
 						<script>
-							setprop("/autopilot/settings/target-pitch-degree", arg[0]);
+							setprop("/autopilot/settings/target-pitch-deg", arg[0]);
 							setprop("/autopilot/locks/altitude", "pitch-hold");
 						</script>
 					</binding>
 				</key>
 			</key>
 
-			<key n="111">
-				<name>o</name>
-				<desc>AoA hold</desc>
+			<key n="102">
+				<name>f</name>
+				<desc>FPA hold</desc>
 				<key n="901">
 					<name>%f</name>
-					<desc>AoA angle = %.1f degree</desc>
+					<desc>FPA = %.1f degree</desc>
 					<binding>
 						<command>nasal</command>
 						<script>
-							setprop("/autopilot/settings/target-aoa-degree", arg[0]);
-							setprop("/autopilot/locks/altitude", "aoa-hold");
+							setprop("/autopilot/settings/target-fpa-deg", arg[0]);
+							setprop("/autopilot/locks/altitude", "fpa-hold");
 						</script>
 					</binding>
 				</key>

From fcadca63a361d515640eeb6a9df48b7a4be189c1 Mon Sep 17 00:00:00 2001
From: Roman Ludwicki <romek21@op.pl>
Date: Sun, 24 Apr 2022 00:12:03 +0200
Subject: [PATCH 4/6] Fix range slider for `Apply to close mp` in Lag Settings

---
 gui/dialogs/lag-adjust.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gui/dialogs/lag-adjust.xml b/gui/dialogs/lag-adjust.xml
index 96cc8c686..f2571214c 100644
--- a/gui/dialogs/lag-adjust.xml
+++ b/gui/dialogs/lag-adjust.xml
@@ -121,7 +121,7 @@
         <slider>
           <row>2</row>
           <col>2</col>
-          <name>Range</name>
+          <name>range</name>
           <min>1</min>
           <max>15</max>
           <step>0.1</step>

From d8e7e55580696c250c1318570e7a4f24c5d1118d Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Serkan=20=C3=96NDER?= <serkanonder@outlook.com>
Date: Mon, 2 May 2022 00:18:49 +0200
Subject: [PATCH 5/6] i18n: add Turkish translation

---
 Translations/locale.xml              |    5 +
 Translations/tr/FlightGear-Qt.xlf    | 2841 ++++++++++++++++++++++++++
 Translations/tr/FlightGear-nonQt.xlf | 1655 +++++++++++++++
 3 files changed, 4501 insertions(+)
 create mode 100644 Translations/tr/FlightGear-Qt.xlf
 create mode 100644 Translations/tr/FlightGear-nonQt.xlf

diff --git a/Translations/locale.xml b/Translations/locale.xml
index 658e6f248..ef4cdad54 100644
--- a/Translations/locale.xml
+++ b/Translations/locale.xml
@@ -108,5 +108,10 @@
 		<xliff type="string">Translations/pt/FlightGear-nonQt.xlf</xliff>
 	</locale>
 
+	<locale>
+		<lang type="string">tr</lang>
+		<lang type="string">tr_TR</lang>
+		<xliff type="string">Translations/tr/FlightGear-nonQt.xlf</xliff>
+	</locale>
 
 </PropertyList>
diff --git a/Translations/tr/FlightGear-Qt.xlf b/Translations/tr/FlightGear-Qt.xlf
new file mode 100644
index 000000000..0754c9d60
--- /dev/null
+++ b/Translations/tr/FlightGear-Qt.xlf
@@ -0,0 +1,2841 @@
+<?xml version="1.0" encoding="utf-8"?>
+<xliff version="1.2" xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:trolltech="urn:trolltech:names:ts:document:1.0">
+  <file original="" datatype="plaintext" source-language="en" target-language="tr"><body>
+    <group restype="x-trolltech-linguist-context" resname="InstallSceneryDialog">
+      <trans-unit id="_msg1" approved="yes">
+        <source xml:space="preserve">Install scenery</source>
+        <target xml:space="preserve">Manzarayı yükle</target>
+      </trans-unit>
+      <trans-unit id="_msg2" approved="yes">
+        <source xml:space="preserve">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The easiest way to automatically install scenery is to use TerraSync. If you prefer to download and install scenery manually, you can use this dialog to extract and install the files in the correct place. (&lt;a href=&quot;http://ns334561.ip-5-196-65.eu/~fgscenery/WS2.0/scenery-2.0.1.html&quot;&gt;&lt;span style=&quot; text-decoration: underline; color:#0000ff;&quot;&gt;Click here to download scenery&lt;/span&gt;&lt;/a&gt;)&lt;/p&gt;&lt;p&gt;Files will be extracted and installed to a &apos;Scenery&apos; folder inside your chosen downloads location (currently %1), after which you can delete the archives if you wish.&lt;/p&gt;&lt;p&gt;To begin, click &apos;Next&apos; and select one or more downloaded scenery archives, which have names such as &apos;w010n40.tar.gz&apos;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
+        <target xml:space="preserve">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Manzarayı otomatik olarak kurmanın en kolay yolu TerraSync kullanmaktır. Manzarayı el ile indirip yüklemeyi tercih ederseniz, dosyaları doğru yere ayıklamak ve yüklemek için bu iletişim kutusunu kullanabilirsiniz. (&lt;a href=&quot;http://ns334561.ip-5-196-65.eu/~fgscenery/WS2.0/scenery-2.0.1.html&quot;&gt;&lt;span style=&quot; text-decoration: underline; color:#0000ff;&quot;&gt;Manzara dosyasını indirmek için buraya tıklayın&lt;/span&gt;&lt;/a&gt;)&lt;/p&gt;&lt;p&gt;Dosyalar ayıklanacak ve seçtiğiniz indirme konumunun içindeki bir &apos;Scenery&apos; klasörüne yüklenecek (şu anda %1), daha sonra isterseniz arşivleri silebilirsiniz.&lt;/p&gt;&lt;p&gt;Başlamak için &apos;İleri&apos; ye tıklayın ve &apos;w010n40.tar.gz&apos; gibi adlara sahip bir veya daha fazla indirilen manzara arşivi seçin.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</target>
+      </trans-unit>
+      <trans-unit id="_msg3" approved="yes">
+        <source xml:space="preserve">Please wait, verifying and extracting scenery...</source>
+        <target xml:space="preserve">Lütfen bekleyin, sahne doğrulanıyor ve çıkarılıyor...</target>
+      </trans-unit>
+      <trans-unit id="_msg4" approved="yes">
+        <source xml:space="preserve">TextLabel</source>
+        <target xml:space="preserve">MetinEtiketi</target>
+      </trans-unit>
+      <trans-unit id="_msg5" approved="yes">
+        <source xml:space="preserve">Successfully installed the scenery files to &apos;%1&apos;. This location will be added to the list of additional sceneries to be used.</source>
+        <target xml:space="preserve">Manzara dosyaları başarıyla &apos;%1&apos; konumuna yüklendi. Bu konum, kullanılacak ek sahneler listesine eklenecektir.</target>
+      </trans-unit>
+    </group>
+    <group restype="x-trolltech-linguist-context" resname="SetupRootDialog">
+      <trans-unit id="_msg6" approved="yes">
+        <source xml:space="preserve">Setup required data files</source>
+        <target xml:space="preserve">Gerekli veri dosyalarını ayarlayın</target>
+      </trans-unit>
+      <trans-unit id="_msg7" approved="yes">
+        <source xml:space="preserve">TextLabel</source>
+        <target xml:space="preserve">Metin Etiketi</target>
+      </trans-unit>
+      <trans-unit id="_msg8" approved="yes">
+        <source xml:space="preserve">FlightGear version 3.4.5</source>
+        <target xml:space="preserve">FlightGear 3.4.5 sürümü</target>
+      </trans-unit>
+      <trans-unit id="_msg9" approved="yes">
+        <source xml:space="preserve">Use built-in data files</source>
+        <target xml:space="preserve">Yerleşik veri dosyalarını kullanın</target>
+      </trans-unit>
+      <trans-unit id="_msg10" approved="yes">
+        <source xml:space="preserve">Download </source>
+        <target xml:space="preserve">İndir </target>
+      </trans-unit>
+      <trans-unit id="_msg11" approved="yes">
+        <source xml:space="preserve">Replace me</source>
+        <target xml:space="preserve">Beni değiştirin</target>
+      </trans-unit>
+      <trans-unit id="_msg12" approved="yes">
+        <source xml:space="preserve">Choose folder...</source>
+        <target xml:space="preserve">Dizin Seç...</target>
+      </trans-unit>
+      <trans-unit id="_msg13" approved="yes">
+        <source xml:space="preserve">To use the files included with this copy of FlightGear, click this button</source>
+        <target xml:space="preserve">FlightGear&apos;ın bu kopyasında bulunan dosyaları kullanmak için bu düğmeye tıklayın</target>
+      </trans-unit>
+      <trans-unit id="_msg14" approved="yes">
+        <source xml:space="preserve">To download a compressed archive of the files, click the &apos;Download&apos; button. Once the download is complete, extract the files to a suitable location and choose the folder using the button above.</source>
+        <target xml:space="preserve">Dosyaların sıkıştırılmış bir arşivini indirmek için &apos;İndir&apos; düğmesini tıklayın. İndirme işlemi tamamlandıktan sonra dosyaları uygun bir konuma çıkarın ve yukarıdaki düğmeyi kullanarak klasörü seçin.</target>
+      </trans-unit>
+      <trans-unit id="_msg15" approved="yes">
+        <source xml:space="preserve">To browse to a downloaded copy of the files on your computer, click this button</source>
+        <target xml:space="preserve">Bilgisayarınızdaki dosyaların indirilmiş bir kopyasına göz atmak için bu düğmeyi tıklayın</target>
+      </trans-unit>
+    </group>
+  </body></file>
+  <file original="/home/devel/FGFS/flightgear/src/GUI/InstallSceneryDialog.cxx" datatype="cpp" source-language="en" target-language="tr"><body>
+    <group restype="x-trolltech-linguist-context" resname="InstallSceneryDialog">
+      <trans-unit id="_msg16" approved="yes">
+        <source xml:space="preserve">Next</source>
+        <target xml:space="preserve">Sonraki</target>
+        <context-group purpose="location"><context context-type="linenumber">189</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg17" approved="yes">
+        <source xml:space="preserve">Extracting</source>
+        <target xml:space="preserve">Ayıklanıyor</target>
+        <context-group purpose="location"><context context-type="linenumber">196</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg18" approved="yes">
+        <source xml:space="preserve">Okay</source>
+        <target xml:space="preserve">Tamam</target>
+        <context-group purpose="location"><context context-type="linenumber">209</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg19" approved="yes">
+        <source xml:space="preserve">Choose scenery to install</source>
+        <target xml:space="preserve">Yüklemek için manzara seçin</target>
+        <context-group purpose="location"><context context-type="linenumber">247</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg20" approved="yes">
+        <source xml:space="preserve">Problems occured extracting the archive &apos;%1&apos;: %2</source>
+        <target xml:space="preserve">&apos;%1&apos; arşivi çıkarılırken sorunlar oluştu: %2</target>
+        <context-group purpose="location"><context context-type="linenumber">281</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg21" approved="yes">
+        <source xml:space="preserve">Extracting %1</source>
+        <target xml:space="preserve">%1 Ayıklanıyor</target>
+        <context-group purpose="location"><context context-type="linenumber">293</context></context-group>
+      </trans-unit>
+    </group>
+    <group restype="x-trolltech-linguist-context" resname="InstallSceneryThread">
+      <trans-unit id="_msg22" approved="yes">
+        <source xml:space="preserve">scenery archive name is not correct.</source>
+        <target xml:space="preserve">manzara arşivi adı doğru değil.</target>
+        <context-group purpose="location"><context context-type="linenumber">82</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg23" approved="yes">
+        <source xml:space="preserve">file does not appear to be a scenery archive.</source>
+        <target xml:space="preserve">dosya bir manzara arşivi gibi görünmüyor.</target>
+        <context-group purpose="location"><context context-type="linenumber">93</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg24" approved="yes">
+        <source xml:space="preserve">unarchiving failed</source>
+        <target xml:space="preserve">arşivden çıkarma başarısız</target>
+        <context-group purpose="location"><context context-type="linenumber">142</context></context-group>
+      </trans-unit>
+    </group>
+  </body></file>
+  <file original="/home/devel/FGFS/flightgear/src/GUI/SetupRootDialog.cxx" datatype="cpp" source-language="en" target-language="tr"><body>
+    <group restype="x-trolltech-linguist-context" resname="SetupRootDialog">
+      <trans-unit id="_msg25" approved="yes">
+        <source xml:space="preserve">FlightGear version %1</source>
+        <target xml:space="preserve">FlightGear sürümü %1</target>
+        <context-group purpose="location"><context context-type="linenumber">72</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg26" approved="yes">
+        <source xml:space="preserve">Choose FlightGear data folder</source>
+        <target xml:space="preserve">FlightGear veri klasörünü seçin</target>
+        <context-group purpose="location"><context context-type="linenumber">198</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg27" approved="yes">
+        <source xml:space="preserve">This copy of FlightGear does not include the base data files. Please select a suitable folder containing a previously download set of files.</source>
+        <target xml:space="preserve">FlightGear&apos;ın bu kopyası temel veri dosyalarını içermez. Lütfen önceden indirilmiş bir dizi dosya içeren uygun bir klasör seçin.</target>
+        <context-group purpose="location"><context context-type="linenumber">247</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg28" approved="yes">
+        <source xml:space="preserve">The requested location &apos;%1&apos; does not appear to be a valid set of data files for FlightGear</source>
+        <target xml:space="preserve">İstenen konum &apos;%1&apos; FlightGear için geçerli bir veri dosyası grubu gibi görünmüyor</target>
+        <context-group purpose="location"><context context-type="linenumber">252</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg29" approved="yes">
+        <source xml:space="preserve">Detected incompatible version of the data files: version %1 found, but this is FlightGear %2. (At location: &apos;%3&apos;) Please install or select a matching set of data files.</source>
+        <target xml:space="preserve">Veri dosyalarının uyumsuz sürümü algılandı: %1 sürümü bulundu, ancak bu FlightGear %2. (Konumda: &apos;%3&apos;) Lütfen eşleşen bir veri dosyası grubu kurun veya seçin.</target>
+        <context-group purpose="location"><context context-type="linenumber">258</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg30" approved="yes">
+        <source xml:space="preserve">Please select or download a copy of the FlightGear data files.</source>
+        <target xml:space="preserve">Lütfen FlightGear veri dosyalarının bir kopyasını seçin veya indirin.</target>
+        <context-group purpose="location"><context context-type="linenumber">265</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg31" approved="yes">
+        <source xml:space="preserve">The choosen location (%1) does not appear to contain FlightGear data files. Please try another location.</source>
+        <target xml:space="preserve">Seçilen konum (%1) FlightGear veri dosyalarını içermiyor gibi görünüyor. Lütfen başka bir konum deneyin.</target>
+        <context-group purpose="location"><context context-type="linenumber">269</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg32" approved="yes">
+        <source xml:space="preserve">The choosen location (%1) contains files for version %2, but this is FlightGear %3. Please update or try another location</source>
+        <target xml:space="preserve">Seçilen konum (%1), %2 sürümü için dosyalar içeriyor, ancak bu, FlightGear %3. Lütfen güncelleyin veya başka bir konum deneyin</target>
+        <context-group purpose="location"><context context-type="linenumber">275</context></context-group>
+      </trans-unit>
+    </group>
+  </body></file>
+  <file original="/home/devel/FGFS/flightgear/src/GUI/qml/AddButton.qml" datatype="plaintext" source-language="en" target-language="tr"><body>
+    <group restype="x-trolltech-linguist-context" resname="AddButton">
+      <trans-unit id="_msg33" approved="yes">
+        <source xml:space="preserve">Add</source>
+        <target xml:space="preserve">Ekle</target>
+        <context-group purpose="location"><context context-type="linenumber">18</context></context-group>
+      </trans-unit>
+    </group>
+  </body></file>
+  <file original="/home/devel/FGFS/flightgear/src/GUI/qml/AddCatalogPanel.qml" datatype="plaintext" source-language="en" target-language="tr"><body>
+    <group restype="x-trolltech-linguist-context" resname="AddCatalogPanel">
+      <trans-unit id="_msg34" approved="yes">
+        <source xml:space="preserve">Hangar URL:</source>
+        <target xml:space="preserve">Hangar URL&apos;si:</target>
+        <context-group purpose="location"><context context-type="linenumber">44</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg35" approved="yes">
+        <source xml:space="preserve">Cancel</source>
+        <target xml:space="preserve">İptal</target>
+        <context-group purpose="location"><context context-type="linenumber">65</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg36" approved="yes">
+        <source xml:space="preserve">Add hangar</source>
+        <target xml:space="preserve">Hangar ekle</target>
+        <context-group purpose="location"><context context-type="linenumber">77</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg37" approved="yes">
+        <source xml:space="preserve">Failed to find a hangar description at the URL: &apos;%1&apos;. Check you entered the URL correctly.</source>
+        <target xml:space="preserve">URL&apos;de hangar açıklaması bulunamadı: &apos;%1&apos;. URL&apos;yi doğru girdiğinizi kontrol edin.</target>
+        <context-group purpose="location"><context context-type="linenumber">129</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg38" approved="yes">
+        <source xml:space="preserve">Access to the hangar data was forbidden by the server. Please check the URL you entered, or contact the hangar authors.</source>
+        <target xml:space="preserve">Hangar verilerine erişim sunucu tarafından yasaklandı. Lütfen girdiğiniz URL&apos;yi kontrol edin veya hangar yazarlarıyla iletişime geçin.</target>
+        <context-group purpose="location"><context context-type="linenumber">132</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg39" approved="yes">
+        <source xml:space="preserve">Failed to download from the server due to a network problem. Check your Internet connection is working, and that you entered the correct URL.</source>
+        <target xml:space="preserve">Bir ağ sorunu nedeniyle sunucudan indirilemedi. İnternet bağlantınızın çalıştığını ve doğru URL&apos;yi girdiğinizi kontrol edin.</target>
+        <context-group purpose="location"><context context-type="linenumber">135</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg40" approved="yes">
+        <source xml:space="preserve">The hangar you requested is for a different version of FlightGear. (This is version %1)</source>
+        <target xml:space="preserve">Talep ettiğiniz hangar, FlightGear&apos;ın farklı bir sürümü için. (Bu %1 sürümüdür)</target>
+        <context-group purpose="location"><context context-type="linenumber">138</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg41" approved="yes">
+        <source xml:space="preserve">The requested URL doesn&apos;t contain valid hangar data. Check you entered a valid hangar URL. If it&apos;s correct, please contact the hangar authors, or try again later.</source>
+        <target xml:space="preserve">İstenen URL, geçerli hangar verileri içermiyor. Geçerli bir hangar URL&apos;si girdiğinizi kontrol edin. Doğruysa, lütfen hangar yazarlarıyla iletişime geçin veya daha sonra tekrar deneyin.</target>
+        <context-group purpose="location"><context context-type="linenumber">142</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg42" approved="yes">
+        <source xml:space="preserve">Click here to add a new aircraft hangar. (Note this requires an Internet connection)</source>
+        <target xml:space="preserve">Yeni bir uçak hangarı eklemek için burayı tıklayın. (Bunun bir İnternet bağlantısı gerektirdiğini unutmayın)</target>
+        <context-group purpose="location"><context context-type="linenumber">154</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg43" approved="yes">
+        <source xml:space="preserve">Enter a hangar location (URL) to add.</source>
+        <target xml:space="preserve">Eklemek için bir hangar konumu (URL) girin.</target>
+        <context-group purpose="location"><context context-type="linenumber">162</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg44" approved="yes">
+        <source xml:space="preserve">Retrieving hangar information...</source>
+        <target xml:space="preserve">Hangar bilgileri alınıyor...</target>
+        <context-group purpose="location"><context context-type="linenumber">170</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg45" approved="yes">
+        <source xml:space="preserve">There was a problem adding the hangar: %1.</source>
+        <target xml:space="preserve">Hangar eklenirken bir sorun oluştu: %1.</target>
+        <context-group purpose="location"><context context-type="linenumber">179</context></context-group>
+      </trans-unit>
+    </group>
+  </body></file>
+  <file original="Obsolete_PO_entries" datatype="plaintext" source-language="en" target-language="tr"><body>
+    <group restype="x-trolltech-linguist-context" resname="AddCatalogPanel">
+      <trans-unit id="_msg46" translate="no">
+        <source xml:space="preserve">The requested hangar seems to be invalid (damaged or incomplete). Please contact the hangar authors, or try again later</source>
+        <target xml:space="preserve"></target>
+      </trans-unit>
+    </group>
+    <group restype="x-trolltech-linguist-context" resname="HelpSupport">
+      <trans-unit id="_msg47" translate="no">
+        <source xml:space="preserve">&lt;p&gt;FlightGear is open source software, developed entirely by volunteers. Support is provided by our excellent user community. The easiest place to ask questions and get support is on &lt;a %1&gt;our forums&lt;/a&gt;.&lt;/p&gt;
+&lt;p&gt;To get started with the simulator, please use our tutorial system: this is available from the &apos;Help&apos; menu in the simulator. We recommend starting with the Cessna 172 to learn how to get airborne.&lt;/p&gt;
+&lt;p&gt;Other good resources:&lt;ul&gt;&lt;li&gt;&lt;a %2&gt;the official manual (PDF)&lt;/a&gt;&lt;/li&gt;
+&lt;li&gt;&lt;a %3&gt;key commands reference&lt;/a&gt;&lt;/li&gt;
+&lt;li&gt;&lt;a %4&gt;our wiki&lt;/a&gt; (which includes FAQs)&lt;/li&gt;
+&lt;/ul&gt;&lt;/p&gt;</source>
+        <target xml:space="preserve"></target>
+      </trans-unit>
+    </group>
+    <group restype="x-trolltech-linguist-context" resname="SettingExtraArguments">
+      <trans-unit id="_msg48" translate="no">
+        <source xml:space="preserve">Enter additional command-line arguments if any are required. See &lt;a href=&quot;http://flightgear.sourceforge.net/getstart-en/getstart-enpa2.html#x5-450004.5&quot;&gt;here&lt;/a&gt; for documentation on possible arguments. &lt;br&gt;&lt;b&gt;Warning:&lt;/b&gt; values entered here always override other settings; &lt;a href=&quot;#view-command-line&quot;&gt;click here&lt;/a&gt; to view the final set of arguments that will be used</source>
+        <target xml:space="preserve"></target>
+      </trans-unit>
+    </group>
+  </body></file>
+  <file original="/home/devel/FGFS/flightgear/src/GUI/qml/HelpSupport.qml" datatype="plaintext" source-language="en" target-language="tr"><body>
+    <group restype="x-trolltech-linguist-context" resname="HelpSupport">
+      <trans-unit id="_msg49" approved="yes">
+        <source xml:space="preserve">&lt;p&gt;FlightGear is open source software, developed entirely by volunteers. Support is provided by our excellent user community. The easiest place to ask questions and get support is on &lt;a %1&gt;our forums&lt;/a&gt;.&lt;/p&gt;
+&lt;p&gt;To get started with the simulator, please use our tutorial system: this is available from the &apos;Help&apos; menu in the simulator. We recommend starting with the Cessna 172 to learn how to get airborne.&lt;/p&gt;
+&lt;p&gt;Other good resources:&lt;ul&gt;&lt;li&gt;&lt;a %2&gt;the official manual&lt;/a&gt;&lt;/li&gt;
+&lt;li&gt;&lt;a %3&gt;key commands reference&lt;/a&gt;&lt;/li&gt;
+&lt;li&gt;&lt;a %4&gt;our wiki&lt;/a&gt; (which includes FAQs)&lt;/li&gt;
+&lt;/ul&gt;&lt;/p&gt;</source>
+        <target xml:space="preserve">&lt;p&gt;FlightGear, tamamen gönüllüler tarafından geliştirilen açık kaynaklı bir yazılımdır. Destek, mükemmel kullanıcı topluluğumuz tarafından sağlanmaktadır. Soru sormak ve destek almak için en kolay yer &lt;a %1&gt;forumlarımız&lt;/a&gt;.&lt;/p&gt;
+&lt;p&gt;Simülatörü kullanmaya başlamak için lütfen eğitim sistemimizi kullanın: buna simülatördeki &apos;Yardım&apos; menüsünden ulaşılabilir. Nasıl havalanacağınızı öğrenmek için Cessna 172 ile başlamanızı öneririz.&lt;/p&gt;
+&lt;p&gt;Diğer iyi kaynaklar:&lt;ul&gt;&lt;li&gt;&lt;a %2&gt;resmi kılavuz (PDF)&lt;/a&gt;&lt;/li&gt;
+&lt;li&gt;&lt;a %3&gt;anahtar komutları başvurusu&lt;/a&gt;&lt;/li&gt;
+&lt;li&gt;&lt;a %4&gt;wikimiz&lt;/a&gt; (SSS&apos;ları içerir)&lt;/li&gt;
+&lt;/ul&gt;&lt;/p&gt;</target>
+        <context-group purpose="location"><context context-type="linenumber">39</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg50" approved="yes">
+        <source xml:space="preserve">&lt;p&gt;For help using this launcher, &lt;a %1&gt;try enabling the getting started hints&lt;/a&gt;.&lt;/p&gt;
+</source>
+        <target xml:space="preserve">&lt;p&gt;Bu başlatıcıyı kullanma konusunda yardım için &lt;a %1&gt;başlangıç ipuçlarını etkinleştirmeyi deneyin&lt;/a&gt;.&lt;/p&gt;
+</target>
+        <context-group purpose="location"><context context-type="linenumber">63</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg51" approved="yes">
+        <source xml:space="preserve">&lt;p&gt;If you find an issue, please use &lt;a %1&gt;our help forum&lt;/a&gt;.&lt;/p&gt;
+</source>
+        <target xml:space="preserve">&lt;p&gt;Bir sorun bulursanız, lütfen &lt;a %1&gt;yardım forumumuzu&lt;/a&gt; kullanın.&lt;/p&gt;
+</target>
+        <context-group purpose="location"><context context-type="linenumber">77</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg52" approved="yes">
+        <source xml:space="preserve">&lt;p&gt;FlightGear is the result of twenty-five years of work by hundreds of contributors around the world. We&apos;d be delighted if you would join us.&lt;/p&gt;
+</source>
+        <target xml:space="preserve">&lt;p&gt;FlightGear, dünya çapında yüzlerce katılımcının yirmi beş yıllık çalışmasının sonucudur. Bize katılırsanız çok seviniriz.&lt;/p&gt;
+</target>
+        <context-group purpose="location"><context context-type="linenumber">90</context></context-group>
+      </trans-unit>
+    </group>
+  </body></file>
+  <file original="/home/devel/FGFS/flightgear/src/GUI/qml/SettingExtraArguments.qml" datatype="plaintext" source-language="en" target-language="tr"><body>
+    <group restype="x-trolltech-linguist-context" resname="SettingExtraArguments">
+      <trans-unit id="_msg53" approved="yes">
+        <source xml:space="preserve">Enter additional command-line arguments if any are required. See &lt;a href=&quot;http://flightgear.sourceforge.net/manual/2020.3/en/getstart-ench4.html#x8-330004.4&quot;&gt;documentation&lt;/a&gt; for possible arguments. &lt;br&gt;&lt;b&gt;Warning:&lt;/b&gt; values entered here always override other settings; &lt;a href=&quot;#view-command-line&quot;&gt;click here&lt;/a&gt; to view the final set of arguments that will be used</source>
+        <target xml:space="preserve">Gerekirse ek komut satırı bağımsız değişkenleri girin. Olası argümanlar için &lt;a href=&quot;http://flightgear.sourceforge.net/manual/2020.3/en/getstart-ench4.html#x8-330004.4&quot;&gt;belgelere&lt;/a&gt; bakın. &lt;br&gt;&lt;b&gt;Uyarı:&lt;/b&gt; buraya girilen değerler her zaman diğer ayarları geçersiz kılar; Kullanılacak argümanların son kümesini görüntülemek için &lt;a href=&quot;#view-command-line&quot;&gt;burayı tıklayın&lt;/a&gt;</target>
+        <context-group purpose="location"><context context-type="linenumber">28</context></context-group>
+        <note annotates="source" from="developer">The “getstart” manual has translations. For languages listed in $ALL_LANGUAGES at &lt;https://sourceforge.net/p/flightgear/getstart/ci/next/tree/bin/makegetstart.sh&gt;, replace *both* occurrences of “en” in the URL with the appropriate language code from $ALL_LANGUAGES. And please test the modified URL before validating the translation. :-)</note>
+      </trans-unit>
+      <trans-unit id="_msg54" approved="yes">
+        <source xml:space="preserve">&lt;b&gt;Warning:&lt;/b&gt; specifying &lt;tt&gt;fg-root&lt;/tt&gt;, &lt;tt&gt;fg-aircraft&lt;/tt&gt;, &lt;tt&gt;fg-scenery&lt;/tt&gt; or &lt;tt&gt;fg-home&lt;/tt&gt; using this section is not recommended, and may cause problem or prevent the simulator from running. Please use the add-ons page to setup scenery and aircrft directories, and the &apos;Select data files location&apos; menu item to change the root data directory.</source>
+        <target xml:space="preserve">&lt;b&gt;Uyarı:&lt;/b&gt; Bu bölümü kullanarak &lt;tt&gt;fg-root&lt;/tt&gt;, &lt;tt&gt;fg-uçak&lt;/tt&gt;, &lt;tt&gt;fg-manzara&lt;/tt&gt; veya &lt;ttz&gt;fg-ev&lt;/tt&gt; belirtilmesi önerilmez ve soruna neden olabilir veya simülatörün çalışmasını engelleyebilir. Lütfen manzara ve uçak dizinlerini ayarlamak için eklentiler sayfasını ve kök veri dizinini değiştirmek için &apos;Veri dosyaları konumunu seçin&apos; menü öğesini kullanın.</target>
+        <context-group purpose="location"><context context-type="linenumber">52</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg55" approved="yes">
+        <source xml:space="preserve">&lt;b&gt;Note:&lt;/b&gt; you have entered arguments relating to the startup location below. To prevent problems caused by conflicting settings, the values entered on the location page (for example, airport or altitude) will be ignored.</source>
+        <target xml:space="preserve">&lt;b&gt;Not:&lt;/b&gt; Başlangıç konumuyla ilgili argümanları aşağıya girdiniz. Çakışan ayarlardan kaynaklanan sorunları önlemek için konum sayfasına girilen değerler (örneğin, havaalanı veya rakım) yok sayılır.</target>
+        <context-group purpose="location"><context context-type="linenumber">63</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg56" approved="yes">
+        <source xml:space="preserve">&lt;b&gt;Note:&lt;/b&gt; you have entered arguments relating to the selected aircraft. To prevent problems caused by conflicting settings, the aircraft page will be ignored.</source>
+        <target xml:space="preserve">&lt;b&gt;Not:&lt;/b&gt; seçilen uçakla ilgili argümanlar girdiniz. Çakışan ayarlardan kaynaklanan sorunları önlemek için uçak sayfası yok sayılır.</target>
+        <context-group purpose="location"><context context-type="linenumber">73</context></context-group>
+      </trans-unit>
+    </group>
+  </body></file>
+  <file original="/home/devel/FGFS/flightgear/src/GUI/qml/AddOns.qml" datatype="plaintext" source-language="en" target-language="tr"><body>
+    <group restype="x-trolltech-linguist-context" resname="AddOns">
+      <trans-unit id="_msg57" approved="yes">
+        <source xml:space="preserve">Aircraft hangars</source>
+        <target xml:space="preserve">Uçak hangarları</target>
+        <context-group purpose="location"><context context-type="linenumber">52</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg58" approved="yes">
+        <source xml:space="preserve">Aircraft hangars are managed collections of aircraft, which can be downloaded, installed and updated inside FlightGear.</source>
+        <target xml:space="preserve">Uçak hangarları, FlightGear içinde indirilebilen, kurulabilen ve güncellenebilen, yönetilen uçak koleksiyonlarıdır.</target>
+        <context-group purpose="location"><context context-type="linenumber">53</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg59" approved="yes">
+        <source xml:space="preserve">The official FlightGear aircraft hangar is not set up. To add it, click here.</source>
+        <target xml:space="preserve">Resmi FlightGear uçak hangarı kurulmadı. Eklemek için burayı tıklayın.</target>
+        <context-group purpose="location"><context context-type="linenumber">93</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg60" approved="yes">
+        <source xml:space="preserve">Additional aircraft folders</source>
+        <target xml:space="preserve">Ek uçak klasörleri</target>
+        <context-group purpose="location"><context context-type="linenumber">116</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg61" approved="yes">
+        <source xml:space="preserve">To use aircraft you download yourself, FlightGear needs to know the folder(s) containing the aircraft data.</source>
+        <target xml:space="preserve">Kendi indirdiğiniz uçağı kullanmak için FlightGear&apos;ın uçak verilerini içeren klasörleri bilmesi gerekir.</target>
+        <context-group purpose="location"><context context-type="linenumber">117</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg62" approved="yes">
+        <source xml:space="preserve">Remove the aircraft folder: &apos;%1&apos; from the list? (The folder contents will not be changed)</source>
+        <target xml:space="preserve">Uçak klasörü &apos;%1&apos; listeden kaldırılsın mı? (Klasör içeriği değişmeyecek)</target>
+        <context-group purpose="location"><context context-type="linenumber">140</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg63" approved="yes">
+        <source xml:space="preserve">No custom aircraft paths are configured.</source>
+        <target xml:space="preserve">Hiçbir özel uçak yolu yapılandırılmamış.</target>
+        <context-group purpose="location"><context context-type="linenumber">150</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg64" approved="yes">
+        <source xml:space="preserve">Add-on Module folders</source>
+        <target xml:space="preserve">Eklenti Modülü klasörleri</target>
+        <context-group purpose="location"><context context-type="linenumber">167</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg65" approved="yes">
+        <source xml:space="preserve">To use Add-on Modules that you download yourself, FlightGear needs to know the folder(s) containing the Add-on Modules.</source>
+        <target xml:space="preserve">Kendi indirdiğiniz Eklenti Modüllerini kullanmak için FlightGear&apos;ın Eklenti Modüllerini içeren klasörleri bilmesi gerekir.</target>
+        <context-group purpose="location"><context context-type="linenumber">168</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg66" approved="yes">
+        <source xml:space="preserve">Remove the add-on module folder: &apos;%1&apos; from the list? (The folder contents will not be changed)</source>
+        <target xml:space="preserve">Eklenti modülü klasörü &apos;%1&apos; listeden kaldırılsın mı? (Klasör içeriği değişmeyecek)</target>
+        <context-group purpose="location"><context context-type="linenumber">196</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg67" approved="yes">
+        <source xml:space="preserve">No custom add-on module paths are configured.</source>
+        <target xml:space="preserve">Hiçbir özel eklenti modülü yolu yapılandırılmadı.</target>
+        <context-group purpose="location"><context context-type="linenumber">221</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg68" approved="yes">
+        <source xml:space="preserve">Additional scenery folders</source>
+        <target xml:space="preserve">Ek manzara klasörleri</target>
+        <context-group purpose="location"><context context-type="linenumber">238</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg69" approved="yes">
+        <source xml:space="preserve">To use scenery you download yourself, FlightGear needs to know the folders containing the scenery data. Adjust the order of the list to control which scenery is used in a region.</source>
+        <target xml:space="preserve">Kendi indirdiğiniz manzarayı kullanmak için FlightGear&apos;ın manzara verilerini içeren klasörleri bilmesi gerekir. Bir bölgede hangi manzaranın kullanıldığını kontrol etmek için listenin sırasını ayarlayın.</target>
+        <context-group purpose="location"><context context-type="linenumber">239</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg70" approved="yes">
+        <source xml:space="preserve">Remove the scenery folder: &apos;%1&apos; from the list? (The folder contents will not be changed)</source>
+        <target xml:space="preserve">Manzara klasörü &apos;%1&apos; listeden kaldırılsın mı? (Klasör içeriği değişmeyecek)</target>
+        <context-group purpose="location"><context context-type="linenumber">264</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg71" approved="yes">
+        <source xml:space="preserve">No custom scenery paths are configured.</source>
+        <target xml:space="preserve">Hiçbir özel manzara yolu yapılandırılmamış.</target>
+        <context-group purpose="location"><context context-type="linenumber">274</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg72" approved="yes">
+        <source xml:space="preserve">Additional aircraft or scenery folders were specified on the command-line. These are not listed here, but will be used when starting the simulator.</source>
+        <target xml:space="preserve">Komut satırında ek uçak veya manzara klasörleri belirtildi. Bunlar burada listelenmemiştir, ancak simülatör başlatılırken kullanılacaktır.</target>
+        <context-group purpose="location"><context context-type="linenumber">291</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg73" approved="yes">
+        <source xml:space="preserve">Install add-on scenery</source>
+        <target xml:space="preserve">Manzara eklentisini yükleyin</target>
+        <context-group purpose="location"><context context-type="linenumber">299</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg74" approved="yes">
+        <source xml:space="preserve">If you have downloaded scenery manually from the official FlightGear website, you can use this button to extract and install it into a suitable folder. (Scenery downloaded this way should have a file name such as &apos;w40n020.tar.gz&apos;)</source>
+        <target xml:space="preserve">Manzarayı resmi FlightGear web sitesinden elle indirdiyseniz, bu düğmeyi uygun bir klasöre çıkarmak ve yüklemek için kullanabilirsiniz. (Bu şekilde indirilen manzara, &apos;w40n020.tar.gz&apos; gibi bir dosya adına sahip olmalıdır)</target>
+        <context-group purpose="location"><context context-type="linenumber">322</context></context-group>
+      </trans-unit>
+    </group>
+  </body></file>
+  <file original="/home/devel/FGFS/flightgear/src/GUI/qml/AddOnsDelegate.qml" datatype="plaintext" source-language="en" target-language="tr"><body>
+    <group restype="x-trolltech-linguist-context" resname="AddOnsDelegate">
+      <trans-unit id="_msg75" approved="yes">
+        <source xml:space="preserve">%1 %2</source>
+        <target xml:space="preserve">%1 %2</target>
+        <context-group purpose="location"><context context-type="linenumber">18</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg76" approved="yes">
+        <source xml:space="preserve"> (disabled due to incompatible FG version)</source>
+        <target xml:space="preserve"> (uyumsuz FG sürümü nedeniyle devre dışı bırakıldı)</target>
+        <context-group purpose="location"><context context-type="linenumber">18</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg77" approved="yes">
+        <source xml:space="preserve">Remove</source>
+        <target xml:space="preserve">Kaldır</target>
+        <context-group purpose="location"><context context-type="linenumber">118</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg78" approved="yes">
+        <source xml:space="preserve">Cancel</source>
+        <target xml:space="preserve">İptal</target>
+        <context-group purpose="location"><context context-type="linenumber">119</context></context-group>
+      </trans-unit>
+    </group>
+  </body></file>
+  <file original="/home/devel/FGFS/flightgear/src/GUI/qml/AddonsDetailsView.qml" datatype="plaintext" source-language="en" target-language="tr"><body>
+    <group restype="x-trolltech-linguist-context" resname="AddonsDetailsView">
+      <trans-unit id="_msg79" approved="yes">
+        <source xml:space="preserve">%1: %2</source>
+        <target xml:space="preserve">%1: %2</target>
+        <context-group purpose="location"><context context-type="linenumber">30</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg80" approved="yes">
+        <source xml:space="preserve">Module</source>
+        <target xml:space="preserve">Modül</target>
+        <context-group purpose="location"><context context-type="linenumber">51</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg81" approved="yes">
+        <source xml:space="preserve">Description</source>
+        <target xml:space="preserve">Açıklama</target>
+        <context-group purpose="location"><context context-type="linenumber">70</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg82" approved="yes">
+        <source xml:space="preserve">Id</source>
+        <target xml:space="preserve">Kimlik</target>
+        <context-group purpose="location"><context context-type="linenumber">78</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg83" approved="yes">
+        <source xml:space="preserve">Version</source>
+        <target xml:space="preserve">Sürüm</target>
+        <context-group purpose="location"><context context-type="linenumber">86</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg84" approved="yes">
+        <source xml:space="preserve">Minimum FlightGear version</source>
+        <target xml:space="preserve">En düşük FlightGear sürümü</target>
+        <context-group purpose="location"><context context-type="linenumber">94</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg85" approved="yes">
+        <source xml:space="preserve">Maximum FlightGear version</source>
+        <target xml:space="preserve">En yüksek FlightGear sürümü</target>
+        <context-group purpose="location"><context context-type="linenumber">102</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg86" approved="yes">
+        <source xml:space="preserve">Authors</source>
+        <target xml:space="preserve">Yazarlar</target>
+        <context-group purpose="location"><context context-type="linenumber">110</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg87" approved="yes">
+        <source xml:space="preserve">Maintainers</source>
+        <target xml:space="preserve">Bakıcılar</target>
+        <context-group purpose="location"><context context-type="linenumber">119</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg88" approved="yes">
+        <source xml:space="preserve">Website</source>
+        <target xml:space="preserve">İnternet Sitesi</target>
+        <context-group purpose="location"><context context-type="linenumber">138</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg89" approved="yes">
+        <source xml:space="preserve">Support and issue reporting</source>
+        <target xml:space="preserve">Destek ve sorun raporlama</target>
+        <context-group purpose="location"><context context-type="linenumber">144</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg90" approved="yes">
+        <source xml:space="preserve">Download</source>
+        <target xml:space="preserve">İndir</target>
+        <context-group purpose="location"><context context-type="linenumber">150</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg91" approved="yes">
+        <source xml:space="preserve">Local file location</source>
+        <target xml:space="preserve">Yerel dosya konumu</target>
+        <context-group purpose="location"><context context-type="linenumber">157</context></context-group>
+      </trans-unit>
+    </group>
+  </body></file>
+  <file original="/home/devel/FGFS/flightgear/src/GUI/qml/AdvancedSettingsToggle.qml" datatype="plaintext" source-language="en" target-language="tr"><body>
+    <group restype="x-trolltech-linguist-context" resname="AdvancedSettingsToggle">
+      <trans-unit id="_msg92" approved="yes">
+        <source xml:space="preserve">Show more</source>
+        <target xml:space="preserve">Daha fazla göster</target>
+        <context-group purpose="location"><context context-type="linenumber">17</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg93" approved="yes">
+        <source xml:space="preserve">Show less</source>
+        <target xml:space="preserve">Daha az göster</target>
+        <context-group purpose="location"><context context-type="linenumber">25</context></context-group>
+      </trans-unit>
+    </group>
+  </body></file>
+  <file original="/home/devel/FGFS/flightgear/src/GUI/qml/AircraftCompactDelegate.qml" datatype="plaintext" source-language="en" target-language="tr"><body>
+    <group restype="x-trolltech-linguist-context" resname="AircraftCompactDelegate">
+      <trans-unit id="_msg94" approved="yes">
+        <source xml:space="preserve">URI: %1
+Local path: %2</source>
+        <target xml:space="preserve">URI: %1
+Yerel yol: %2</target>
+        <context-group purpose="location"><context context-type="linenumber">28</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg95" approved="yes">
+        <source xml:space="preserve">Click here to select different variants or models of this aircraft</source>
+        <target xml:space="preserve">Bu uçağın farklı çeşitlerini veya modellerini seçmek için buraya tıklayın</target>
+        <context-group purpose="location"><context context-type="linenumber">127</context></context-group>
+      </trans-unit>
+    </group>
+  </body></file>
+  <file original="/home/devel/FGFS/flightgear/src/GUI/qml/AircraftDetailsView.qml" datatype="plaintext" source-language="en" target-language="tr"><body>
+    <group restype="x-trolltech-linguist-context" resname="AircraftDetailsView">
+      <trans-unit id="_msg96" approved="yes">
+        <source xml:space="preserve">by %1</source>
+        <target xml:space="preserve">%1 tarafından</target>
+        <context-group purpose="location"><context context-type="linenumber">116</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg97" approved="yes">
+        <source xml:space="preserve">Website</source>
+        <target xml:space="preserve">İnternet Sitesi</target>
+        <context-group purpose="location"><context context-type="linenumber">134</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg98" approved="yes">
+        <source xml:space="preserve">Support and issue reporting</source>
+        <target xml:space="preserve">Destek ve sorun raporlama</target>
+        <context-group purpose="location"><context context-type="linenumber">140</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg99" approved="yes">
+        <source xml:space="preserve">Wikipedia</source>
+        <target xml:space="preserve">Wikipedia</target>
+        <context-group purpose="location"><context context-type="linenumber">146</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg100" approved="yes">
+        <source xml:space="preserve">Click here to mark this as a favourite aircraft</source>
+        <target xml:space="preserve">Bunu favori bir uçak olarak işaretlemek için buraya tıklayın</target>
+        <context-group purpose="location"><context context-type="linenumber">184</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg101" approved="yes">
+        <source xml:space="preserve">Ratings:</source>
+        <target xml:space="preserve">Derecelendirme:</target>
+        <context-group purpose="location"><context context-type="linenumber">201</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg102" approved="yes">
+        <source xml:space="preserve">Flight model</source>
+        <target xml:space="preserve">Uçuş modeli</target>
+        <context-group purpose="location"><context context-type="linenumber">206</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg103" approved="yes">
+        <source xml:space="preserve">Systems</source>
+        <target xml:space="preserve">Sistemler</target>
+        <context-group purpose="location"><context context-type="linenumber">214</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg104" approved="yes">
+        <source xml:space="preserve">Cockpit</source>
+        <target xml:space="preserve">Kokpit</target>
+        <context-group purpose="location"><context context-type="linenumber">227</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg105" approved="yes">
+        <source xml:space="preserve">Exterior</source>
+        <target xml:space="preserve">Dış</target>
+        <context-group purpose="location"><context context-type="linenumber">235</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg106" approved="yes">
+        <source xml:space="preserve">Local file location: %1</source>
+        <target xml:space="preserve">Yerel dosya konumu: %1</target>
+        <context-group purpose="location"><context context-type="linenumber">245</context></context-group>
+      </trans-unit>
+    </group>
+  </body></file>
+  <file original="/home/devel/FGFS/flightgear/src/GUI/qml/AircraftDownloadPanel.qml" datatype="plaintext" source-language="en" target-language="tr"><body>
+    <group restype="x-trolltech-linguist-context" resname="AircraftDownloadPanel">
+      <trans-unit id="_msg107" approved="yes">
+        <source xml:space="preserve">Install</source>
+        <target xml:space="preserve">Yükle</target>
+        <context-group purpose="location"><context context-type="linenumber">46</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg108" approved="yes">
+        <source xml:space="preserve">Uninstall</source>
+        <target xml:space="preserve">Kaldır</target>
+        <context-group purpose="location"><context context-type="linenumber">60</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">195</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg109" approved="yes">
+        <source xml:space="preserve">Update</source>
+        <target xml:space="preserve">Güncelle</target>
+        <context-group purpose="location"><context context-type="linenumber">74</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg110" approved="yes">
+        <source xml:space="preserve">Queued</source>
+        <target xml:space="preserve">Kuyrukta</target>
+        <context-group purpose="location"><context context-type="linenumber">93</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg111" approved="yes">
+        <source xml:space="preserve">Cancel</source>
+        <target xml:space="preserve">İptal</target>
+        <context-group purpose="location"><context context-type="linenumber">94</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">111</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">196</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg112" approved="yes">
+        <source xml:space="preserve">Downloading</source>
+        <target xml:space="preserve">İndiriliyor</target>
+        <context-group purpose="location"><context context-type="linenumber">110</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg113" approved="yes">
+        <source xml:space="preserve">Are you sure you want to uninstall this aircraft?</source>
+        <target xml:space="preserve">Bu uçağı kaldırmak istediğinizden emin misiniz?</target>
+        <context-group purpose="location"><context context-type="linenumber">193</context></context-group>
+      </trans-unit>
+    </group>
+  </body></file>
+  <file original="/home/devel/FGFS/flightgear/src/GUI/qml/AircraftGridDelegate.qml" datatype="plaintext" source-language="en" target-language="tr"><body>
+    <group restype="x-trolltech-linguist-context" resname="AircraftGridDelegate">
+      <trans-unit id="_msg114" approved="yes">
+        <source xml:space="preserve">Install</source>
+        <target xml:space="preserve">Kur</target>
+        <context-group purpose="location"><context context-type="linenumber">64</context></context-group>
+      </trans-unit>
+    </group>
+  </body></file>
+  <file original="/home/devel/FGFS/flightgear/src/GUI/qml/AircraftList.qml" datatype="plaintext" source-language="en" target-language="tr"><body>
+    <group restype="x-trolltech-linguist-context" resname="AircraftList">
+      <trans-unit id="_msg115" approved="yes">
+        <source xml:space="preserve">Toggle between grid and list view</source>
+        <target xml:space="preserve">Izgara ve liste görünümü arasında geçiş yap</target>
+        <context-group purpose="location"><context context-type="linenumber">59</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg116" approved="yes">
+        <source xml:space="preserve">Installed Aircraft</source>
+        <target xml:space="preserve">Kurulu Uçak</target>
+        <context-group purpose="location"><context context-type="linenumber">69</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg117" approved="yes">
+        <source xml:space="preserve">Use this button to view installed aircraft</source>
+        <target xml:space="preserve">Kurulu uçakları görüntülemek için bu düğmeyi kullanın</target>
+        <context-group purpose="location"><context context-type="linenumber">85</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg118" approved="yes">
+        <source xml:space="preserve">Favourites</source>
+        <target xml:space="preserve">Favoriler</target>
+        <context-group purpose="location"><context context-type="linenumber">91</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg119" approved="yes">
+        <source xml:space="preserve">Browse</source>
+        <target xml:space="preserve">Gözat</target>
+        <context-group purpose="location"><context context-type="linenumber">101</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg120" approved="yes">
+        <source xml:space="preserve">View available aircraft to download</source>
+        <target xml:space="preserve">İndirmek için mevcut uçakları görüntüleyin</target>
+        <context-group purpose="location"><context context-type="linenumber">117</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg121" approved="yes">
+        <source xml:space="preserve">Updates</source>
+        <target xml:space="preserve">Güncellemeler</target>
+        <context-group purpose="location"><context context-type="linenumber">124</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg122" approved="yes">
+        <source xml:space="preserve">Enter text to search aircraft names and descriptions.</source>
+        <target xml:space="preserve">Uçak adlarını ve açıklamalarını aramak için metin girin.</target>
+        <context-group purpose="location"><context context-type="linenumber">159</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg123" approved="yes">
+        <source xml:space="preserve">No aircraft match the search.</source>
+        <target xml:space="preserve">Aramayla eşleşen uçak yok.</target>
+        <context-group purpose="location"><context context-type="linenumber">208</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg124" approved="yes">
+        <source xml:space="preserve">No favourite aircraft selected: install some aircraft and mark them as favourites by clicking the ★</source>
+        <target xml:space="preserve">Favori uçak seçilmedi: Birkaç uçak kurun ve ★ simgesine tıklayarak favori olarak işaretleyin</target>
+        <context-group purpose="location"><context context-type="linenumber">226</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg125" approved="yes">
+        <source xml:space="preserve">To install additional aircraft, click the the &apos;Browse&apos; tab at the top of this page.</source>
+        <target xml:space="preserve">Ek uçak kurmak için bu sayfanın üst kısmındaki &apos;Gözat&apos; sekmesine tıklayın.</target>
+        <context-group purpose="location"><context context-type="linenumber">251</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg126" approved="yes">
+        <source xml:space="preserve">No aircraft updates available right now</source>
+        <target xml:space="preserve">Şu anda mevcut uçak güncellemesi yok</target>
+        <context-group purpose="location"><context context-type="linenumber">309</context></context-group>
+      </trans-unit>
+    </group>
+  </body></file>
+  <file original="/home/devel/FGFS/flightgear/src/GUI/qml/AircraftPreviewPanel.qml" datatype="plaintext" source-language="en" target-language="tr"><body>
+    <group restype="x-trolltech-linguist-context" resname="AircraftPreviewPanel">
+      <trans-unit id="_msg127" approved="yes">
+        <source xml:space="preserve">Click here to cycle through preview images</source>
+        <target xml:space="preserve">Önizleme görüntüleri arasında geçiş yapmak için burayı tıklayın</target>
+        <context-group purpose="location"><context context-type="linenumber">119</context></context-group>
+      </trans-unit>
+    </group>
+  </body></file>
+  <file original="/home/devel/FGFS/flightgear/src/GUI/qml/AircraftRatingsPanel.qml" datatype="plaintext" source-language="en" target-language="tr"><body>
+    <group restype="x-trolltech-linguist-context" resname="AircraftRatingsPanel">
+      <trans-unit id="_msg128" approved="yes">
+        <source xml:space="preserve">Filter using ratings</source>
+        <target xml:space="preserve">Derecelendirmeleri kullanarak filtreleyin</target>
+        <context-group purpose="location"><context context-type="linenumber">25</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg129" approved="yes">
+        <source xml:space="preserve">Adjust minimum ratings</source>
+        <target xml:space="preserve">Asgari derecelendirmeleri ayarlayın</target>
+        <context-group purpose="location"><context context-type="linenumber">43</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg130" approved="yes">
+        <source xml:space="preserve">Click here to change which aircraft are shown or hidden based on their ratings</source>
+        <target xml:space="preserve">Derecelerine göre hangi uçakların gösterileceğini veya gizleneceğini değiştirmek için burayı tıklayın</target>
+        <context-group purpose="location"><context context-type="linenumber">67</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg131" approved="yes">
+        <source xml:space="preserve">Aircraft are rated by the community based on four critiera, on a scale from one to five. The ratings are designed to help make an informed guess how complete and functional an aircraft is.</source>
+        <target xml:space="preserve">Uçaklar, topluluk tarafından birden beşe kadar bir ölçekte dört kritere göre derecelendirilir. Derecelendirmeler, bir uçağın ne kadar eksiksiz ve işlevsel olduğu konusunda bilinçli bir tahminde bulunmaya yardımcı olmak için tasarlanmıştır.</target>
+        <context-group purpose="location"><context context-type="linenumber">99</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg132" approved="yes">
+        <source xml:space="preserve">Minimum flight-model (FDM) rating:</source>
+        <target xml:space="preserve">Asgari uçuş modeli (FDM) derecesi:</target>
+        <context-group purpose="location"><context context-type="linenumber">108</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg133" approved="yes">
+        <source xml:space="preserve">Minimum systems rating</source>
+        <target xml:space="preserve">Asgari sistem derecelendirmesi</target>
+        <context-group purpose="location"><context context-type="linenumber">114</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg134" approved="yes">
+        <source xml:space="preserve">Minimum cockpit visual rating</source>
+        <target xml:space="preserve">Asgari kokpit görsel derecelendirmesi</target>
+        <context-group purpose="location"><context context-type="linenumber">120</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg135" approved="yes">
+        <source xml:space="preserve">Minimum exterial visual model rating</source>
+        <target xml:space="preserve">Asgari dış görsel model derecelendirmesi</target>
+        <context-group purpose="location"><context context-type="linenumber">126</context></context-group>
+      </trans-unit>
+    </group>
+  </body></file>
+  <file original="/home/devel/FGFS/flightgear/src/GUI/qml/CatalogDelegate.qml" datatype="plaintext" source-language="en" target-language="tr"><body>
+    <group restype="x-trolltech-linguist-context" resname="CatalogDelegate">
+      <trans-unit id="_msg136" approved="yes">
+        <source xml:space="preserve">This hangar is not compatible with this version of FlightGear</source>
+        <target xml:space="preserve">Bu hangar, FlightGear&apos;ın bu sürümüyle uyumlu değil</target>
+        <context-group purpose="location"><context context-type="linenumber">91</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg137" approved="yes">
+        <source xml:space="preserve">This hangar is currently disabled due to a problem. Click here to try updating the hangar information from the server. (An Internet connection is required for this)</source>
+        <target xml:space="preserve">Bu hangar şu anda bir sorun nedeniyle devre dışı. Sunucudan hangar bilgilerini güncellemeyi denemek için buraya tıklayın. (Bunun için internet bağlantısı gereklidir)</target>
+        <context-group purpose="location"><context context-type="linenumber">99</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg138" approved="yes">
+        <source xml:space="preserve">Remove</source>
+        <target xml:space="preserve">Kaldır</target>
+        <context-group purpose="location"><context context-type="linenumber">139</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg139" approved="yes">
+        <source xml:space="preserve">Cancel</source>
+        <target xml:space="preserve">İptal</target>
+        <context-group purpose="location"><context context-type="linenumber">140</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg140" approved="yes">
+        <source xml:space="preserve">Remove this hangar? (Downloaded aircraft will be deleted from your computer)</source>
+        <target xml:space="preserve">Bu hangar kaldırılsın mı? (İndirilen uçak bilgisayarınızdan silinecektir)</target>
+        <context-group purpose="location"><context context-type="linenumber">142</context></context-group>
+      </trans-unit>
+    </group>
+  </body></file>
+  <file original="/home/devel/FGFS/flightgear/src/GUI/qml/DidMigrateOfficialCatalogNotification.qml" datatype="plaintext" source-language="en" target-language="tr"><body>
+    <group restype="x-trolltech-linguist-context" resname="DidMigrateOfficialCatalogNotification">
+      <trans-unit id="_msg141" approved="yes">
+        <source xml:space="preserve">An updated version of the official aircraft hangar &apos;%2&apos; was automatically installed. Existing aircraft have been marked for update, &lt;a href=%1&gt;click here to update them all&lt;/a&gt;</source>
+        <target xml:space="preserve">Resmi uçak hangarının &apos;%2&apos; güncellenmiş bir versiyonu otomatik olarak kuruldu. Mevcut uçaklar güncelleme için işaretlendi, &lt;a href=%1&gt;hepsini güncellemek için burayı tıklayın&lt;/a&gt;</target>
+        <context-group purpose="location"><context context-type="linenumber">10</context></context-group>
+      </trans-unit>
+    </group>
+  </body></file>
+  <file original="/home/devel/FGFS/flightgear/src/GUI/qml/DidMigrateOtherCatalogNotification.qml" datatype="plaintext" source-language="en" target-language="tr"><body>
+    <group restype="x-trolltech-linguist-context" resname="DidMigrateOtherCatalogNotification">
+      <trans-unit id="_msg142" approved="yes">
+        <source xml:space="preserve">An updated version of the hangar &apos;%2&apos; was automatically installed. Existing aircraft have been marked for update, &lt;a href=%1&gt;click here to update them all&lt;/a&gt;</source>
+        <target xml:space="preserve">&apos;%2&apos; hangarının güncellenmiş bir sürümü otomatik olarak kuruldu. Mevcut uçaklar güncelleme için işaretlendi, &lt;a href=%1&gt;hepsini güncellemek için burayı tıklayın&lt;/a&gt;</target>
+        <context-group purpose="location"><context context-type="linenumber">10</context></context-group>
+      </trans-unit>
+    </group>
+  </body></file>
+  <file original="/home/devel/FGFS/flightgear/src/GUI/qml/DownloadsInDocumentsWarning.qml" datatype="plaintext" source-language="en" target-language="tr"><body>
+    <group restype="x-trolltech-linguist-context" resname="DownloadsInDocumentsWarning">
+      <trans-unit id="_msg143" approved="yes">
+        <source xml:space="preserve">&lt;p&gt;FlightGear previously downloaded aircraft and scenery to a folder within your &apos;Documents&apos; folder. This can cause problems with some security features of Windows, so a new location is now recommended.&lt;/p&gt;&lt;br/&gt;&lt;p&gt;To keep your existing aircraft and scenery downloads, please move the files from &lt;u&gt;&lt;a href=%1&gt;the old location&lt;/a&gt;&lt;/u&gt; to &lt;u&gt;&lt;a href=%2&gt;the new location&lt;/a&gt;&lt;/u&gt;&lt;/p&gt;</source>
+        <target xml:space="preserve">&lt;p&gt;FlightGear daha önce uçak ve manzarayı &apos;Belgeler&apos; klasörünüzdeki bir klasöre indirdi. Bu, Windows&apos;un bazı güvenlik özelliklerinde sorunlara neden olabilir, bu nedenle şimdi yeni bir konum önerilir.&lt;/p&gt;&lt;br/&gt;&lt;p&gt;Mevcut uçak ve manzara indirmelerinizi saklamak için lütfen dosyaları &lt;u&gt;&lt;a href=%1&gt; eski konumundan&lt;/a&gt;&lt;/u&gt; &lt;u&gt;&lt;a href=%2&gt;yeni konumuna taşıyın&lt;/a&gt;&lt;/u&gt;&lt;/p&gt;</target>
+        <context-group purpose="location"><context context-type="linenumber">10</context></context-group>
+      </trans-unit>
+    </group>
+  </body></file>
+  <file original="/home/devel/FGFS/flightgear/src/GUI/qml/DragToReorderButton.qml" datatype="plaintext" source-language="en" target-language="tr"><body>
+    <group restype="x-trolltech-linguist-context" resname="DragToReorderButton">
+      <trans-unit id="_msg144" approved="yes">
+        <source xml:space="preserve">Move up</source>
+        <target xml:space="preserve">Yukarı taşı</target>
+        <context-group purpose="location"><context context-type="linenumber">51</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg145" approved="yes">
+        <source xml:space="preserve">Move down</source>
+        <target xml:space="preserve">Aşağı taşı</target>
+        <context-group purpose="location"><context context-type="linenumber">51</context></context-group>
+      </trans-unit>
+    </group>
+  </body></file>
+  <file original="/home/devel/FGFS/flightgear/src/GUI/qml/Environment.qml" datatype="plaintext" source-language="en" target-language="tr"><body>
+    <group restype="x-trolltech-linguist-context" resname="Environment">
+      <trans-unit id="_msg146" approved="yes">
+        <source xml:space="preserve">Time &amp; Date</source>
+        <target xml:space="preserve">Saat ve Tarih</target>
+        <context-group purpose="location"><context context-type="linenumber">33</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg147" approved="yes">
+        <source xml:space="preserve">Time of day</source>
+        <target xml:space="preserve">Günün zamanı</target>
+        <context-group purpose="location"><context context-type="linenumber">40</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg148" approved="yes">
+        <source xml:space="preserve">Select the time of day used when the simulator starts, or enter a custom date and time.</source>
+        <target xml:space="preserve">Simülatör başladığında kullanılan günün saatini seçin veya özel bir tarih ve saat girin.</target>
+        <context-group purpose="location"><context context-type="linenumber">41</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg149" approved="yes">
+        <source xml:space="preserve">Current time</source>
+        <target xml:space="preserve">Şimdiki zaman</target>
+        <context-group purpose="location"><context context-type="linenumber">43</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg150" approved="yes">
+        <source xml:space="preserve">Dawn</source>
+        <target xml:space="preserve">Şafak</target>
+        <context-group purpose="location"><context context-type="linenumber">43</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg151" approved="yes">
+        <source xml:space="preserve">Morning</source>
+        <target xml:space="preserve">Sabah</target>
+        <context-group purpose="location"><context context-type="linenumber">43</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg152" approved="yes">
+        <source xml:space="preserve">Noon</source>
+        <target xml:space="preserve">Öğle vakti</target>
+        <context-group purpose="location"><context context-type="linenumber">43</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg153" approved="yes">
+        <source xml:space="preserve">Afternoon</source>
+        <target xml:space="preserve">Öğleden sonra</target>
+        <context-group purpose="location"><context context-type="linenumber">44</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg154" approved="yes">
+        <source xml:space="preserve">Dusk</source>
+        <target xml:space="preserve">Alacakaranlık</target>
+        <context-group purpose="location"><context context-type="linenumber">44</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg155" approved="yes">
+        <source xml:space="preserve">Evening</source>
+        <target xml:space="preserve">Akşam</target>
+        <context-group purpose="location"><context context-type="linenumber">44</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg156" approved="yes">
+        <source xml:space="preserve">Midnight</source>
+        <target xml:space="preserve">Gece yarısı</target>
+        <context-group purpose="location"><context context-type="linenumber">45</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg157" approved="yes">
+        <source xml:space="preserve">Custom time &amp; date</source>
+        <target xml:space="preserve">Özel saat ve tarih</target>
+        <context-group purpose="location"><context context-type="linenumber">45</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">67</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg158" approved="yes">
+        <source xml:space="preserve">Enter a date and time to begin the flight at. By default this is in local time for the chosen starting location - use the option below to request a time in GMT / UTC.</source>
+        <target xml:space="preserve">Uçuşun başlayacağı tarih ve saati girin. Varsayılan olarak bu, seçilen başlangıç konumu için yerel saate göredir - GMT / UTC&apos;de bir saat istemek için aşağıdaki seçeneği kullanın.</target>
+        <context-group purpose="location"><context context-type="linenumber">69</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg159" approved="yes">
+        <source xml:space="preserve">Custom time is GMT / UTC</source>
+        <target xml:space="preserve">Özel zaman GMT / UTC&apos;dir</target>
+        <context-group purpose="location"><context context-type="linenumber">77</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg160" approved="yes">
+        <source xml:space="preserve">Season</source>
+        <target xml:space="preserve">Sezon</target>
+        <context-group purpose="location"><context context-type="linenumber">84</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg161" approved="yes">
+        <source xml:space="preserve">Select if normal (summer) or winter textures are used for the scenery. This does not affect other aspects of the simulation at present, such as icing or weather simulation</source>
+        <target xml:space="preserve">Manzara için normal (yaz) veya kış dokularının kullanılıp kullanılmayacağını seçin. Bu, şu anda simülasyonun buzlanma veya hava durumu simülasyonu gibi diğer yönlerini etkilemez</target>
+        <context-group purpose="location"><context context-type="linenumber">85</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg162" approved="yes">
+        <source xml:space="preserve">Summer (default)</source>
+        <target xml:space="preserve">Yaz (varsayılan)</target>
+        <context-group purpose="location"><context context-type="linenumber">89</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg163" approved="yes">
+        <source xml:space="preserve">Winter</source>
+        <target xml:space="preserve">Kış</target>
+        <context-group purpose="location"><context context-type="linenumber">89</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg164" approved="yes">
+        <source xml:space="preserve">Weather</source>
+        <target xml:space="preserve">Hava Durumu</target>
+        <context-group purpose="location"><context context-type="linenumber">116</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg165" approved="yes">
+        <source xml:space="preserve">Advanced weather modelling</source>
+        <target xml:space="preserve">Gelişmiş hava durumu modellemesi</target>
+        <context-group purpose="location"><context context-type="linenumber">122</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg166" approved="yes">
+        <source xml:space="preserve">Detailed weather simulation based on local terrain and atmospheric simulation. Note that using advanced weather with real-world weather data (METAR) information may not show exactly the conditions recorded, and is not recommended for multi-player flight since the weather simulation is not shared over the network.</source>
+        <target xml:space="preserve">Yerel arazi ve atmosferik simülasyona dayalı ayrıntılı hava simülasyonu. Gelişmiş hava durumunu gerçek dünya hava durumu verileri (METAR) bilgileriyle kullanmanın, kaydedilen koşulları tam olarak göstermeyebileceğini ve hava durumu simülasyonu ağ üzerinden paylaşılmadığından çok oyunculu uçuş için önerilmediğini unutmayın.</target>
+        <context-group purpose="location"><context context-type="linenumber">123</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg167" approved="yes">
+        <source xml:space="preserve">Real-world weather</source>
+        <target xml:space="preserve">Gerçek dünya hava durumu</target>
+        <context-group purpose="location"><context context-type="linenumber">133</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg168" approved="yes">
+        <source xml:space="preserve">Download real-world weather from the NOAA servers based on location.</source>
+        <target xml:space="preserve">Konuma göre NOAA sunucularından gerçek dünya hava durumunu indirin.</target>
+        <context-group purpose="location"><context context-type="linenumber">134</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg169" approved="yes">
+        <source xml:space="preserve">Weather scenario</source>
+        <target xml:space="preserve">Hava durumu senaryosu</target>
+        <context-group purpose="location"><context context-type="linenumber">142</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg170" approved="yes">
+        <source xml:space="preserve">METAR</source>
+        <target xml:space="preserve">METAR</target>
+        <context-group purpose="location"><context context-type="linenumber">162</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg171" approved="yes">
+        <source xml:space="preserve">Enter a custom METAR string, e.g: &apos;%1&apos;</source>
+        <target xml:space="preserve">Özel bir METAR dizesi girin, örneğin: &apos;%1&apos;</target>
+        <context-group purpose="location"><context context-type="linenumber">166</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg172" approved="yes">
+        <source xml:space="preserve">The entered METAR string doesn&apos;t seem to be valid.</source>
+        <target xml:space="preserve">Girilen METAR dizesi geçerli görünmüyor.</target>
+        <context-group purpose="location"><context context-type="linenumber">167</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg173" approved="yes">
+        <source xml:space="preserve">advanced weather</source>
+        <target xml:space="preserve">gelişmiş hava</target>
+        <context-group purpose="location"><context context-type="linenumber">235</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg174" approved="yes">
+        <source xml:space="preserve">real-world weather</source>
+        <target xml:space="preserve">gerçek dünya hava durumu</target>
+        <context-group purpose="location"><context context-type="linenumber">236</context></context-group>
+      </trans-unit>
+    </group>
+  </body></file>
+  <file original="/home/devel/FGFS/flightgear/src/GUI/qml/FirstRun.qml" datatype="plaintext" source-language="en" target-language="tr"><body>
+    <group restype="x-trolltech-linguist-context" resname="FirstRun">
+      <trans-unit id="_msg175" approved="yes">
+        <source xml:space="preserve">Welcome to FlightGear, the open source flight simulator. This software is the work of volunteers. We hope you enjoy it. If you find problems or would like to contribute, please &lt;a %1&gt;visit our forum&lt;/a&gt;.</source>
+        <target xml:space="preserve">Açık kaynaklı uçuş simülatörü Flightgear&apos;a hoş geldiniz. Bu yazılım gönüllülerin eseridir. Bunu beğeneceğinizi umuyoruz. Sorun bulursanız veya katkıda bulunmak istiyorsanız lütfen &lt;a %1&gt;forumumuzu ziyaret edin&lt;/a&gt;.</target>
+        <context-group purpose="location"><context context-type="linenumber">96</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg176" approved="yes">
+        <source xml:space="preserve">FlightGear is Free software, licensed under the &lt;a %1&gt;GNU General Public License&lt;/a&gt;. You are free to use, customize and fix the software; and share your changes with the community.</source>
+        <target xml:space="preserve">FlightGear, &lt;a %1&gt;GNU Genel Kamu Lisansı&lt;/a&gt; altında lisanslanmış özgür bir yazılımdır. Kullanmak için, özelleştirme ve yazılım düzeltme; ve toplumla değişiklikleri paylaşmak serbesttir.</target>
+        <context-group purpose="location"><context context-type="linenumber">114</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg177" approved="yes">
+        <source xml:space="preserve">FlightGear can automatically report crashes and errors to the development team, which helps to improve the software for everyone. This reporting is anonymous but contains information such as the aircraft in use, your operating system and graphics driver. You can enable or disable this reporting in the &apos;Settings&apos; page.</source>
+        <target xml:space="preserve">FlightGear, çökmeleri ve hataları geliştirme ekibine otomatik olarak bildirebilir ve bu da yazılımı herkes için geliştirmeye yardımcı olur. Bu raporlama anonimdir, ancak kullanılan uçak, işletim sisteminiz ve grafik sürücünüz gibi bilgileri içerir. Bu raporlamayı &apos;Ayarlar&apos; sayfasından etkinleştirebilir veya devre dışı bırakabilirsiniz.</target>
+        <context-group purpose="location"><context context-type="linenumber">129</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg178" approved="yes">
+        <source xml:space="preserve">Okay</source>
+        <target xml:space="preserve">Tamam</target>
+        <context-group purpose="location"><context context-type="linenumber">142</context></context-group>
+      </trans-unit>
+    </group>
+  </body></file>
+  <file original="/home/devel/FGFS/flightgear/src/GUI/qml/FlightPlan.qml" datatype="plaintext" source-language="en" target-language="tr"><body>
+    <group restype="x-trolltech-linguist-context" resname="FlightPlan">
+      <trans-unit id="_msg179" approved="yes">
+        <source xml:space="preserve">Fly with a flight-plan</source>
+        <target xml:space="preserve">Bir uçuş planı ile uçun</target>
+        <context-group purpose="location"><context context-type="linenumber">46</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg180" approved="yes">
+        <source xml:space="preserve">Load</source>
+        <target xml:space="preserve">Yükle</target>
+        <context-group purpose="location"><context context-type="linenumber">56</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg181" approved="yes">
+        <source xml:space="preserve">Save</source>
+        <target xml:space="preserve">Kaydet</target>
+        <context-group purpose="location"><context context-type="linenumber">71</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg182" approved="yes">
+        <source xml:space="preserve">Clear</source>
+        <target xml:space="preserve">Temizle</target>
+        <context-group purpose="location"><context context-type="linenumber">76</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg183" approved="yes">
+        <source xml:space="preserve">Aircraft &amp; flight information</source>
+        <target xml:space="preserve">Uçak ve uçuş bilgileri</target>
+        <context-group purpose="location"><context context-type="linenumber">85</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg184" approved="yes">
+        <source xml:space="preserve">Callsign / Flight No.</source>
+        <target xml:space="preserve">Çağrı İşareti / Uçuş No.</target>
+        <context-group purpose="location"><context context-type="linenumber">97</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg185" approved="yes">
+        <source xml:space="preserve">Aircraft type:</source>
+        <target xml:space="preserve">Uçak tipi:</target>
+        <context-group purpose="location"><context context-type="linenumber">116</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg186" approved="yes">
+        <source xml:space="preserve">Flight rules:</source>
+        <target xml:space="preserve">Uçuş kuralları:</target>
+        <context-group purpose="location"><context context-type="linenumber">138</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg187" approved="yes">
+        <source xml:space="preserve">VFR</source>
+        <target xml:space="preserve">VFR</target>
+        <context-group purpose="location"><context context-type="linenumber">139</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg188" approved="yes">
+        <source xml:space="preserve">IFR</source>
+        <target xml:space="preserve">IFR</target>
+        <context-group purpose="location"><context context-type="linenumber">139</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg189" approved="yes">
+        <source xml:space="preserve">Flight type:</source>
+        <target xml:space="preserve">Uçuş tipi:</target>
+        <context-group purpose="location"><context context-type="linenumber">154</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg190" approved="yes">
+        <source xml:space="preserve">Scheduled</source>
+        <target xml:space="preserve">Zamanlanmış</target>
+        <context-group purpose="location"><context context-type="linenumber">155</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg191" approved="yes">
+        <source xml:space="preserve">Non-scheduled</source>
+        <target xml:space="preserve">Programsız</target>
+        <context-group purpose="location"><context context-type="linenumber">156</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg192" approved="yes">
+        <source xml:space="preserve">General aviation</source>
+        <target xml:space="preserve">Genel Havacılık</target>
+        <context-group purpose="location"><context context-type="linenumber">157</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg193" approved="yes">
+        <source xml:space="preserve">Military</source>
+        <target xml:space="preserve">Askeri</target>
+        <context-group purpose="location"><context context-type="linenumber">158</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg194" approved="yes">
+        <source xml:space="preserve">Other</source>
+        <target xml:space="preserve">Diğer</target>
+        <context-group purpose="location"><context context-type="linenumber">159</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg195" approved="yes">
+        <source xml:space="preserve">Wake turbulence category:</source>
+        <target xml:space="preserve">Uyandırma türbülans kategorisi:</target>
+        <context-group purpose="location"><context context-type="linenumber">178</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg196" approved="yes">
+        <source xml:space="preserve">Light</source>
+        <target xml:space="preserve">Hafif</target>
+        <context-group purpose="location"><context context-type="linenumber">179</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg197" approved="yes">
+        <source xml:space="preserve">Medium</source>
+        <target xml:space="preserve">Orta</target>
+        <context-group purpose="location"><context context-type="linenumber">180</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg198" approved="yes">
+        <source xml:space="preserve">Heavy</source>
+        <target xml:space="preserve">Ağır</target>
+        <context-group purpose="location"><context context-type="linenumber">181</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg199" approved="yes">
+        <source xml:space="preserve">Jumbo</source>
+        <target xml:space="preserve">Jumbo</target>
+        <context-group purpose="location"><context context-type="linenumber">182</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg200" approved="yes">
+        <source xml:space="preserve">Route</source>
+        <target xml:space="preserve">Rota</target>
+        <context-group purpose="location"><context context-type="linenumber">190</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">282</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg201" approved="yes">
+        <source xml:space="preserve">Departure airport:</source>
+        <target xml:space="preserve">Kalkış Havalimanı:</target>
+        <context-group purpose="location"><context context-type="linenumber">201</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg202" approved="yes">
+        <source xml:space="preserve">Departure time:</source>
+        <target xml:space="preserve">Hareket saati:</target>
+        <context-group purpose="location"><context context-type="linenumber">225</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg203" approved="yes">
+        <source xml:space="preserve">The flight-plan departure airport (%1) is different to the initial location (%2). Click here to set the initial location to the flight-plan&apos;s airport.</source>
+        <target xml:space="preserve">Uçuş planı kalkış havalimanı (%1), başlangıç konumundan (%2) farklıdır. Uçuş planının havalimanına ilk konumu ayarlamak için buraya tıklayın.</target>
+        <context-group purpose="location"><context context-type="linenumber">239</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg204" approved="yes">
+        <source xml:space="preserve">Cruise speed:</source>
+        <target xml:space="preserve">Seyir hızı:</target>
+        <context-group purpose="location"><context context-type="linenumber">258</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg205" approved="yes">
+        <source xml:space="preserve">Cruise altitude:</source>
+        <target xml:space="preserve">Seyir yüksekliği:</target>
+        <context-group purpose="location"><context context-type="linenumber">273</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg206" approved="yes">
+        <source xml:space="preserve">Generate route</source>
+        <target xml:space="preserve">Rota oluştur</target>
+        <context-group purpose="location"><context context-type="linenumber">302</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg207" approved="yes">
+        <source xml:space="preserve">Using</source>
+        <target xml:space="preserve">Kullanma</target>
+        <context-group purpose="location"><context context-type="linenumber">315</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg208" approved="yes">
+        <source xml:space="preserve">High-level (Jet) airways</source>
+        <target xml:space="preserve">Yüksek seviyeli (Jet) hava yolları</target>
+        <context-group purpose="location"><context context-type="linenumber">316</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg209" approved="yes">
+        <source xml:space="preserve">Low-level (Victor) airways</source>
+        <target xml:space="preserve">Düşük seviyeli (Victor) hava yolları</target>
+        <context-group purpose="location"><context context-type="linenumber">317</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg210" approved="yes">
+        <source xml:space="preserve">High- &amp; low-level airways</source>
+        <target xml:space="preserve">Yüksek ve düşük seviyeli hava yolları</target>
+        <context-group purpose="location"><context context-type="linenumber">318</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg211" approved="yes">
+        <source xml:space="preserve">View route</source>
+        <target xml:space="preserve">Rotayı görüntüle</target>
+        <context-group purpose="location"><context context-type="linenumber">323</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg212" approved="yes">
+        <source xml:space="preserve">Clear route</source>
+        <target xml:space="preserve">Rotayı temizle</target>
+        <context-group purpose="location"><context context-type="linenumber">333</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg213" approved="yes">
+        <source xml:space="preserve">Destination airport:</source>
+        <target xml:space="preserve">Hedef havaalanı:</target>
+        <context-group purpose="location"><context context-type="linenumber">361</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg214" approved="yes">
+        <source xml:space="preserve">Estimated enroute time:</source>
+        <target xml:space="preserve">Tahmini rota süresi:</target>
+        <context-group purpose="location"><context context-type="linenumber">384</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg215" approved="yes">
+        <source xml:space="preserve">Total distance: %1</source>
+        <target xml:space="preserve">Toplam mesafe: %1</target>
+        <context-group purpose="location"><context context-type="linenumber">399</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg216" approved="yes">
+        <source xml:space="preserve">Alternate airport:</source>
+        <target xml:space="preserve">Alternatif havaalanı:</target>
+        <context-group purpose="location"><context context-type="linenumber">410</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg217" approved="yes">
+        <source xml:space="preserve">Additional information</source>
+        <target xml:space="preserve">Ek Bilgiler</target>
+        <context-group purpose="location"><context context-type="linenumber">429</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg218" approved="yes">
+        <source xml:space="preserve">Remarks</source>
+        <target xml:space="preserve">Notlar</target>
+        <context-group purpose="location"><context context-type="linenumber">435</context></context-group>
+      </trans-unit>
+    </group>
+  </body></file>
+  <file original="/home/devel/FGFS/flightgear/src/GUI/qml/GettingStartedTipDisplay.qml" datatype="plaintext" source-language="en" target-language="tr"><body>
+    <group restype="x-trolltech-linguist-context" resname="GettingStartedTipDisplay">
+      <trans-unit id="_msg219" approved="yes">
+        <source xml:space="preserve">Close</source>
+        <target xml:space="preserve">Kapat</target>
+        <context-group purpose="location"><context context-type="linenumber">97</context></context-group>
+      </trans-unit>
+    </group>
+  </body></file>
+  <file original="/home/devel/FGFS/flightgear/src/GUI/qml/GridToggleButton.qml" datatype="plaintext" source-language="en" target-language="tr"><body>
+    <group restype="x-trolltech-linguist-context" resname="GridToggleButton">
+      <trans-unit id="_msg220" approved="yes">
+        <source xml:space="preserve">Switch to grid view</source>
+        <target xml:space="preserve">Izgara görünümüne geç</target>
+        <context-group purpose="location"><context context-type="linenumber">40</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg221" approved="yes">
+        <source xml:space="preserve">Switch to list view</source>
+        <target xml:space="preserve">Liste görünümüne geç</target>
+        <context-group purpose="location"><context context-type="linenumber">41</context></context-group>
+      </trans-unit>
+    </group>
+  </body></file>
+  <file original="/home/devel/FGFS/flightgear/src/GUI/qml/Launcher.qml" datatype="plaintext" source-language="en" target-language="tr"><body>
+    <group restype="x-trolltech-linguist-context" resname="Launcher">
+      <trans-unit id="_msg222" approved="yes">
+        <source xml:space="preserve">Summary</source>
+        <target xml:space="preserve">Özet</target>
+        <context-group purpose="location"><context context-type="linenumber">11</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">35</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg223" approved="yes">
+        <source xml:space="preserve">Aircraft</source>
+        <target xml:space="preserve">Uçak</target>
+        <context-group purpose="location"><context context-type="linenumber">12</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">36</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg224" approved="yes">
+        <source xml:space="preserve">Location</source>
+        <target xml:space="preserve">Konum</target>
+        <context-group purpose="location"><context context-type="linenumber">15</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">39</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg225" approved="yes">
+        <source xml:space="preserve">Location page disabled due to conflicting user arguments (in Settings)</source>
+        <target xml:space="preserve">Çakışan kullanıcı bağımsız değişkenleri nedeniyle konum sayfası devre dışı bırakıldı (Ayarlarda)</target>
+        <context-group purpose="location"><context context-type="linenumber">18</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg226" approved="yes">
+        <source xml:space="preserve">Environment</source>
+        <target xml:space="preserve">Çevre</target>
+        <context-group purpose="location"><context context-type="linenumber">25</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg227" approved="yes">
+        <source xml:space="preserve">Settings</source>
+        <target xml:space="preserve">Ayarlar</target>
+        <context-group purpose="location"><context context-type="linenumber">26</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg228" approved="yes">
+        <source xml:space="preserve">Add-ons</source>
+        <target xml:space="preserve">Eklentiler</target>
+        <context-group purpose="location"><context context-type="linenumber">28</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg229" approved="yes">
+        <source xml:space="preserve">Help</source>
+        <target xml:space="preserve">Yardım</target>
+        <context-group purpose="location"><context context-type="linenumber">29</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg230" approved="yes">
+        <source xml:space="preserve">Fly!</source>
+        <target xml:space="preserve">Uçuş!</target>
+        <context-group purpose="location"><context context-type="linenumber">192</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg231" approved="yes">
+        <source xml:space="preserve">Open saved configuration...</source>
+        <target xml:space="preserve">Kaydedilmiş yapılandırmayı aç...</target>
+        <context-group purpose="location"><context context-type="linenumber">198</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg232" approved="yes">
+        <source xml:space="preserve">Save configuration as...</source>
+        <target xml:space="preserve">Yapılandırmayı farklı kaydet...</target>
+        <context-group purpose="location"><context context-type="linenumber">200</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg233" approved="yes">
+        <source xml:space="preserve">Flight-planning</source>
+        <target xml:space="preserve">Uçuş planlama</target>
+        <context-group purpose="location"><context context-type="linenumber">203</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg234" approved="yes">
+        <source xml:space="preserve">View command line</source>
+        <target xml:space="preserve">Komut satırını görüntüle</target>
+        <context-group purpose="location"><context context-type="linenumber">205</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg235" approved="yes">
+        <source xml:space="preserve">Select data files location...</source>
+        <target xml:space="preserve">Veri dosyaları konumunu seçin...</target>
+        <context-group purpose="location"><context context-type="linenumber">206</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg236" approved="yes">
+        <source xml:space="preserve">Restore default settings...</source>
+        <target xml:space="preserve">Ayarları varsayılan duruma getir...</target>
+        <context-group purpose="location"><context context-type="linenumber">207</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg237" approved="yes">
+        <source xml:space="preserve">Quit</source>
+        <target xml:space="preserve">Çık</target>
+        <context-group purpose="location"><context context-type="linenumber">209</context></context-group>
+      </trans-unit>
+    </group>
+  </body></file>
+  <file original="/home/devel/FGFS/flightgear/src/GUI/qml/Location.qml" datatype="plaintext" source-language="en" target-language="tr"><body>
+    <group restype="x-trolltech-linguist-context" resname="Location">
+      <trans-unit id="_msg238" approved="yes">
+        <source xml:space="preserve">Location</source>
+        <target xml:space="preserve">Konum</target>
+        <context-group purpose="location"><context context-type="linenumber">183</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg239" approved="yes">
+        <source xml:space="preserve">Search for an airport or navaid</source>
+        <target xml:space="preserve">Bir havaalanı veya navaid arayın</target>
+        <context-group purpose="location"><context context-type="linenumber">202</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg240" approved="yes">
+        <source xml:space="preserve">View available aircraft carriers to start at.</source>
+        <target xml:space="preserve">Başlamak için mevcut uçak gemilerini görüntüleyin.</target>
+        <context-group purpose="location"><context context-type="linenumber">251</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg241" approved="yes">
+        <source xml:space="preserve">Enter the name, partial name or ident of a navaid or fix, or an airport name or ICAO identifier. Alternatively, enter a latitude &amp; longitude: for example 53.4,-3.4 or 18.4S, 87.23W</source>
+        <target xml:space="preserve">Bir seyrüsefer yardımcısının veya sabitinin adını, kısmi adını veya kimliğini veya bir havaalanı adını veya ICAO tanımlayıcısını girin. Alternatif olarak, bir enlem ve boylam girin: örneğin 53.4, -3.4 veya 18.4S, 87.23W</target>
+        <context-group purpose="location"><context context-type="linenumber">263</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg242" approved="yes">
+        <source xml:space="preserve">Searching</source>
+        <target xml:space="preserve">Arıyor</target>
+        <context-group purpose="location"><context context-type="linenumber">294</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg243" approved="yes">
+        <source xml:space="preserve">No results for found search &apos;%1&apos;</source>
+        <target xml:space="preserve">&apos;%1&apos; araması için sonuç bulunamadı</target>
+        <context-group purpose="location"><context context-type="linenumber">314</context></context-group>
+      </trans-unit>
+    </group>
+  </body></file>
+  <file original="/home/devel/FGFS/flightgear/src/GUI/qml/LocationAirportView.qml" datatype="plaintext" source-language="en" target-language="tr"><body>
+    <group restype="x-trolltech-linguist-context" resname="LocationAirportView">
+      <trans-unit id="_msg244" approved="yes">
+        <source xml:space="preserve">Click here to select a runway or parking position, and drag to pan. Mouse-wheel zooms in and out.</source>
+        <target xml:space="preserve">Bir pist veya park pozisyonu seçmek için buraya tıklayın ve kaydırmak için sürükleyin. Fare tekerleği yakınlaştırır ve uzaklaştırır.</target>
+        <context-group purpose="location"><context context-type="linenumber">47</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg245" approved="yes">
+        <source xml:space="preserve">Heliport: </source>
+        <target xml:space="preserve">Helikopter pisti: </target>
+        <context-group purpose="location"><context context-type="linenumber">114</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg246" approved="yes">
+        <source xml:space="preserve">Airport: </source>
+        <target xml:space="preserve">Havalimanı: </target>
+        <context-group purpose="location"><context context-type="linenumber">115</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg247" approved="yes">
+        <source xml:space="preserve">Runway</source>
+        <target xml:space="preserve">Pist</target>
+        <context-group purpose="location"><context context-type="linenumber">134</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg248" approved="yes">
+        <source xml:space="preserve">Active</source>
+        <target xml:space="preserve">Aktif</target>
+        <context-group purpose="location"><context context-type="linenumber">144</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg249" approved="yes">
+        <source xml:space="preserve">On final approach</source>
+        <target xml:space="preserve">Son yaklaşmada</target>
+        <context-group purpose="location"><context context-type="linenumber">196</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg250" approved="yes">
+        <source xml:space="preserve">At</source>
+        <target xml:space="preserve">De</target>
+        <context-group purpose="location"><context context-type="linenumber">213</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg251" approved="yes">
+        <source xml:space="preserve"> from the threshold</source>
+        <target xml:space="preserve"> eşikten</target>
+        <context-group purpose="location"><context context-type="linenumber">221</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg252" approved="yes">
+        <source xml:space="preserve">Airspeed:</source>
+        <target xml:space="preserve">Hava hızı:</target>
+        <context-group purpose="location"><context context-type="linenumber">240</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg253" approved="yes">
+        <source xml:space="preserve">Tune navigation radio (NAV1) to runway localizer</source>
+        <target xml:space="preserve">Navigasyon radyosunu (NAV1) pist yerelleştiriciye ayarlayın</target>
+        <context-group purpose="location"><context context-type="linenumber">263</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg254" approved="yes">
+        <source xml:space="preserve">Pad</source>
+        <target xml:space="preserve">Ped</target>
+        <context-group purpose="location"><context context-type="linenumber">288</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg255" approved="yes">
+        <source xml:space="preserve">Parking</source>
+        <target xml:space="preserve">Park</target>
+        <context-group purpose="location"><context context-type="linenumber">343</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg256" approved="yes">
+        <source xml:space="preserve">Available</source>
+        <target xml:space="preserve">Kullanılabilir</target>
+        <context-group purpose="location"><context context-type="linenumber">353</context></context-group>
+      </trans-unit>
+    </group>
+  </body></file>
+  <file original="/home/devel/FGFS/flightgear/src/GUI/qml/LocationAltitudeRow.qml" datatype="plaintext" source-language="en" target-language="tr"><body>
+    <group restype="x-trolltech-linguist-context" resname="LocationAltitudeRow">
+      <trans-unit id="_msg257" approved="yes">
+        <source xml:space="preserve">Altitude:</source>
+        <target xml:space="preserve">Rakım:</target>
+        <context-group purpose="location"><context context-type="linenumber">28</context></context-group>
+      </trans-unit>
+    </group>
+  </body></file>
+  <file original="/home/devel/FGFS/flightgear/src/GUI/qml/LocationCarrierView.qml" datatype="plaintext" source-language="en" target-language="tr"><body>
+    <group restype="x-trolltech-linguist-context" resname="LocationCarrierView">
+      <trans-unit id="_msg258" approved="yes">
+        <source xml:space="preserve">Carrier: %1</source>
+        <target xml:space="preserve">Taşıyıcı: %1</target>
+        <context-group purpose="location"><context context-type="linenumber">76</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg259" approved="yes">
+        <source xml:space="preserve">On final approach</source>
+        <target xml:space="preserve">Son yaklaşmada</target>
+        <context-group purpose="location"><context context-type="linenumber">102</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg260" approved="yes">
+        <source xml:space="preserve">Abeam carrier at 180 degrees</source>
+        <target xml:space="preserve">180 derecede Dik taşıyıcı</target>
+        <context-group purpose="location"><context context-type="linenumber">127</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg261" approved="yes">
+        <source xml:space="preserve">On deck</source>
+        <target xml:space="preserve">Güvertede</target>
+        <context-group purpose="location"><context context-type="linenumber">160</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg262" approved="yes">
+        <source xml:space="preserve">at</source>
+        <target xml:space="preserve">de</target>
+        <context-group purpose="location"><context context-type="linenumber">222</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg263" approved="yes">
+        <source xml:space="preserve"> from the FLOLS (aka the ball)</source>
+        <target xml:space="preserve"> FLOLS&apos;tan (diğer adıyla top)</target>
+        <context-group purpose="location"><context context-type="linenumber">230</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg264" approved="yes">
+        <source xml:space="preserve">Airspeed:</source>
+        <target xml:space="preserve">Hava hızı:</target>
+        <context-group purpose="location"><context context-type="linenumber">253</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg265" approved="yes">
+        <source xml:space="preserve">Tune navigation radio (TACAN) to carrier</source>
+        <target xml:space="preserve">Navigasyon radyosunu (TACAN) operatöre ayarlayın</target>
+        <context-group purpose="location"><context context-type="linenumber">277</context></context-group>
+      </trans-unit>
+    </group>
+  </body></file>
+  <file original="/home/devel/FGFS/flightgear/src/GUI/qml/LocationNavaidView.qml" datatype="plaintext" source-language="en" target-language="tr"><body>
+    <group restype="x-trolltech-linguist-context" resname="LocationNavaidView">
+      <trans-unit id="_msg266" approved="yes">
+        <source xml:space="preserve">Drag here to move the map. Mouse-wheel zooms in and out.</source>
+        <target xml:space="preserve">Haritayı taşımak için buraya sürükleyin. Fare tekerleği yakınlaştırır ve uzaklaştırır.</target>
+        <context-group purpose="location"><context context-type="linenumber">35</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg267" approved="yes">
+        <source xml:space="preserve">Position: %1</source>
+        <target xml:space="preserve">Konum: %1</target>
+        <context-group purpose="location"><context context-type="linenumber">77</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg268" approved="yes">
+        <source xml:space="preserve">Navaid: %1 / %2</source>
+        <target xml:space="preserve">Navigasyon: %1 / %2</target>
+        <context-group purpose="location"><context context-type="linenumber">83</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg269" approved="yes">
+        <source xml:space="preserve">Airspeed:</source>
+        <target xml:space="preserve">Hava hızı:</target>
+        <context-group purpose="location"><context context-type="linenumber">99</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg270" approved="yes">
+        <source xml:space="preserve">Heading:</source>
+        <target xml:space="preserve">Başlık:</target>
+        <context-group purpose="location"><context context-type="linenumber">121</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg271" approved="yes">
+        <source xml:space="preserve">Offset </source>
+        <target xml:space="preserve">Offset </target>
+        <context-group purpose="location"><context context-type="linenumber">141</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg272" approved="yes">
+        <source xml:space="preserve"> on bearing </source>
+        <target xml:space="preserve"> yatakta </target>
+        <context-group purpose="location"><context context-type="linenumber">160</context></context-group>
+      </trans-unit>
+    </group>
+  </body></file>
+  <file original="/home/devel/FGFS/flightgear/src/GUI/qml/NewVersionNotification.qml" datatype="plaintext" source-language="en" target-language="tr"><body>
+    <group restype="x-trolltech-linguist-context" resname="NewVersionNotification">
+      <trans-unit id="_msg273" approved="yes">
+        <source xml:space="preserve">A new release of FlightGear is available (%1): click for more information</source>
+        <target xml:space="preserve">FlightGear&apos;ın yeni bir sürümü mevcut (%1): daha fazla bilgi için tıklayın</target>
+        <context-group purpose="location"><context context-type="linenumber">11</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg274" approved="yes">
+        <source xml:space="preserve">Updated version %1 is available: click here to download</source>
+        <target xml:space="preserve">Güncellenmiş %1 sürümü mevcut: indirmek için buraya tıklayın</target>
+        <context-group purpose="location"><context context-type="linenumber">12</context></context-group>
+      </trans-unit>
+    </group>
+  </body></file>
+  <file original="/home/devel/FGFS/flightgear/src/GUI/qml/NoDefaultCatalogPanel.qml" datatype="plaintext" source-language="en" target-language="tr"><body>
+    <group restype="x-trolltech-linguist-context" resname="NoDefaultCatalogPanel">
+      <trans-unit id="_msg275" approved="yes">
+        <source xml:space="preserve">The official FlightGear aircraft hangar is not added, so many standard aircraft will not be available. You can add the  hangar now, or hide this message. The offical hangar can always be restored from the &apos;Add-Ons&apos; page.</source>
+        <target xml:space="preserve">Resmi FlightGear uçak hangarı eklenmedi, bu nedenle birçok standart uçak kullanılamayacak. Şimdi hangarı ekleyebilir veya bu mesajı gizleyebilirsiniz. Resmi hangar her zaman &apos;Eklentiler&apos; sayfasından geri yüklenebilir.</target>
+        <context-group purpose="location"><context context-type="linenumber">27</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg276" approved="yes">
+        <source xml:space="preserve">Adding hangar</source>
+        <target xml:space="preserve">Hangar ekleme</target>
+        <context-group purpose="location"><context context-type="linenumber">37</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg277" approved="yes">
+        <source xml:space="preserve">Add default hangar</source>
+        <target xml:space="preserve">Varsayılan hangar ekle</target>
+        <context-group purpose="location"><context context-type="linenumber">38</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg278" approved="yes">
+        <source xml:space="preserve">Hide</source>
+        <target xml:space="preserve">Gizle</target>
+        <context-group purpose="location"><context context-type="linenumber">46</context></context-group>
+      </trans-unit>
+    </group>
+  </body></file>
+  <file original="/home/devel/FGFS/flightgear/src/GUI/qml/PathListDelegate.qml" datatype="plaintext" source-language="en" target-language="tr"><body>
+    <group restype="x-trolltech-linguist-context" resname="PathListDelegate">
+      <trans-unit id="_msg279" approved="yes">
+        <source xml:space="preserve">Remove</source>
+        <target xml:space="preserve">Kaldır</target>
+        <context-group purpose="location"><context context-type="linenumber">115</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg280" approved="yes">
+        <source xml:space="preserve">Cancel</source>
+        <target xml:space="preserve">İptal</target>
+        <context-group purpose="location"><context context-type="linenumber">116</context></context-group>
+      </trans-unit>
+    </group>
+  </body></file>
+  <file original="/home/devel/FGFS/flightgear/src/GUI/qml/PlanRouteDetails.qml" datatype="plaintext" source-language="en" target-language="tr"><body>
+    <group restype="x-trolltech-linguist-context" resname="PlanRouteDetails">
+      <trans-unit id="_msg281" approved="yes">
+        <source xml:space="preserve">Previous Leg</source>
+        <target xml:space="preserve">Önceki Bacak</target>
+        <context-group purpose="location"><context context-type="linenumber">19</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg282" approved="yes">
+        <source xml:space="preserve">Next Leg</source>
+        <target xml:space="preserve">Sonraki Bacak</target>
+        <context-group purpose="location"><context context-type="linenumber">31</context></context-group>
+      </trans-unit>
+    </group>
+  </body></file>
+  <file original="/home/devel/FGFS/flightgear/src/GUI/qml/RouteLegsView.qml" datatype="plaintext" source-language="en" target-language="tr"><body>
+    <group restype="x-trolltech-linguist-context" resname="RouteLegsView">
+      <trans-unit id="_msg283" approved="yes">
+        <source xml:space="preserve">at %1&apos;</source>
+        <target xml:space="preserve">%1&apos;de</target>
+        <context-group purpose="location"><context context-type="linenumber">86</context></context-group>
+        <note from="translator">%1&apos;de</note>
+      </trans-unit>
+      <trans-unit id="_msg284" approved="yes">
+        <source xml:space="preserve">above %1&apos;</source>
+        <target xml:space="preserve">%1&apos;in üstünde</target>
+        <context-group purpose="location"><context context-type="linenumber">89</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg285" approved="yes">
+        <source xml:space="preserve">below %1&apos;</source>
+        <target xml:space="preserve">%1&apos;in altında</target>
+        <context-group purpose="location"><context context-type="linenumber">92</context></context-group>
+      </trans-unit>
+    </group>
+  </body></file>
+  <file original="/home/devel/FGFS/flightgear/src/GUI/qml/SearchButton.qml" datatype="plaintext" source-language="en" target-language="tr"><body>
+    <group restype="x-trolltech-linguist-context" resname="SearchButton">
+      <trans-unit id="_msg286" approved="yes">
+        <source xml:space="preserve">Search</source>
+        <target xml:space="preserve">Ara</target>
+        <context-group purpose="location"><context context-type="linenumber">11</context></context-group>
+      </trans-unit>
+    </group>
+  </body></file>
+  <file original="/home/devel/FGFS/flightgear/src/GUI/qml/Section.qml" datatype="plaintext" source-language="en" target-language="tr"><body>
+    <group restype="x-trolltech-linguist-context" resname="Section">
+      <trans-unit id="_msg287" approved="yes">
+        <source xml:space="preserve">Click here to show advanced settings in this section</source>
+        <target xml:space="preserve">Bu bölümde gelişmiş ayarları göstermek için burayı tıklayın</target>
+        <context-group purpose="location"><context context-type="linenumber">102</context></context-group>
+      </trans-unit>
+    </group>
+  </body></file>
+  <file original="/home/devel/FGFS/flightgear/src/GUI/qml/SettingPathChooser.qml" datatype="plaintext" source-language="en" target-language="tr"><body>
+    <group restype="x-trolltech-linguist-context" resname="SettingPathChooser">
+      <trans-unit id="_msg288" approved="yes">
+        <source xml:space="preserve">%1 (default)</source>
+        <target xml:space="preserve">%1 (varsayılan)</target>
+        <context-group purpose="location"><context context-type="linenumber">45</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg289" approved="yes">
+        <source xml:space="preserve">Change</source>
+        <target xml:space="preserve">Değiştir</target>
+        <context-group purpose="location"><context context-type="linenumber">60</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg290" approved="yes">
+        <source xml:space="preserve">Use default</source>
+        <target xml:space="preserve">Varsayılanı Kullan</target>
+        <context-group purpose="location"><context context-type="linenumber">74</context></context-group>
+      </trans-unit>
+    </group>
+  </body></file>
+  <file original="/home/devel/FGFS/flightgear/src/GUI/qml/Settings.qml" datatype="plaintext" source-language="en" target-language="tr"><body>
+    <group restype="x-trolltech-linguist-context" resname="Settings">
+      <trans-unit id="_msg291" approved="yes">
+        <source xml:space="preserve">Settings</source>
+        <target xml:space="preserve">Ayarlar</target>
+        <context-group purpose="location"><context context-type="linenumber">53</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg292" approved="yes">
+        <source xml:space="preserve">Enter text here to search for a setting</source>
+        <target xml:space="preserve">Bir ayar aramak için buraya metin girin</target>
+        <context-group purpose="location"><context context-type="linenumber">79</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg293" approved="yes">
+        <source xml:space="preserve">General</source>
+        <target xml:space="preserve">Genel</target>
+        <context-group purpose="location"><context context-type="linenumber">92</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg294" approved="yes">
+        <source xml:space="preserve">paused</source>
+        <target xml:space="preserve">duraklatıldı</target>
+        <context-group purpose="location"><context context-type="linenumber">98</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg295" approved="yes">
+        <source xml:space="preserve">console</source>
+        <target xml:space="preserve">konsol</target>
+        <context-group purpose="location"><context context-type="linenumber">99</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg296" approved="yes">
+        <source xml:space="preserve">Start paused</source>
+        <target xml:space="preserve">Başlat durklat</target>
+        <context-group purpose="location"><context context-type="linenumber">106</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg297" approved="yes">
+        <source xml:space="preserve">Automatically pause the simulator when launching. This is useful when starting in the air.</source>
+        <target xml:space="preserve">Başlatırken simülatörü otomatik olarak duraklatın. Bu, havada başlatırken kullanışlıdır.</target>
+        <context-group purpose="location"><context context-type="linenumber">107</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg298" approved="yes">
+        <source xml:space="preserve">Enable auto-coordination</source>
+        <target xml:space="preserve">Otomatik koordinasyonu etkinleştir</target>
+        <context-group purpose="location"><context context-type="linenumber">116</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg299" approved="yes">
+        <source xml:space="preserve">When flying with the mouse, or a joystick lacking a rudder axis, it&apos;s difficult to manually coordinate aileron and rudder movements during turn. This option automatically commands the rudder to maintain zero slip angle when banking</source>
+        <target xml:space="preserve">Fareyle veya dümen ekseni olmayan bir joystick ile uçarken, dönüş sırasında kanatçık ve dümen hareketlerini elle koordine etmek zordur. Bu seçenek, dümene yatarken sıfır kayma açısını korumak için dümene otomatik olarak komut verir</target>
+        <context-group purpose="location"><context context-type="linenumber">117</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg300" approved="yes">
+        <source xml:space="preserve">Show debugging console</source>
+        <target xml:space="preserve">Hata ayıklama konsolunu göster</target>
+        <context-group purpose="location"><context context-type="linenumber">129</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg301" approved="yes">
+        <source xml:space="preserve">Open a console window showing debug output from the application.</source>
+        <target xml:space="preserve">Uygulamadan hata ayıklama çıktısını gösteren bir konsol penceresi açın.</target>
+        <context-group purpose="location"><context context-type="linenumber">130</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg302" approved="yes">
+        <source xml:space="preserve">Enable crash &amp; error reporting</source>
+        <target xml:space="preserve">Kilitlenme ve hata raporlamayı etkinleştir</target>
+        <context-group purpose="location"><context context-type="linenumber">139</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg303" approved="yes">
+        <source xml:space="preserve">Send crash and error reports to the development team for analysis.</source>
+        <target xml:space="preserve">Analiz için geliştirme ekibine kilitlenme ve hata raporları gönderin.</target>
+        <context-group purpose="location"><context context-type="linenumber">140</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg304" approved="yes">
+        <source xml:space="preserve">Enable developer mode</source>
+        <target xml:space="preserve">Geliştirici modunu etkinleştir</target>
+        <context-group purpose="location"><context context-type="linenumber">149</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg305" approved="yes">
+        <source xml:space="preserve">Enable simulator &amp; aircraft development features, such as increased error messages in log files.</source>
+        <target xml:space="preserve">Günlük dosyalarında artan hata mesajları gibi simülatör ve uçak geliştirme özelliklerini etkinleştirin.</target>
+        <context-group purpose="location"><context context-type="linenumber">150</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg306" approved="yes">
+        <source xml:space="preserve">Re-open FlightGear on exit</source>
+        <target xml:space="preserve">Çıkışta FlightGear&apos;ı yeniden açın</target>
+        <context-group purpose="location"><context context-type="linenumber">158</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg307" approved="yes">
+        <source xml:space="preserve">Re-open this window when exiting FlightGear, to start another flight immediately.</source>
+        <target xml:space="preserve">Hemen başka bir uçuş başlatmak için FlightGear&apos;dan çıkarken bu pencereyi yeniden açın.</target>
+        <context-group purpose="location"><context context-type="linenumber">159</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg308" approved="yes">
+        <source xml:space="preserve">Multi-player</source>
+        <target xml:space="preserve">Çok oyunculu</target>
+        <context-group purpose="location"><context context-type="linenumber">175</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg309" approved="yes">
+        <source xml:space="preserve">multi-player</source>
+        <target xml:space="preserve">çok oyunculu</target>
+        <context-group purpose="location"><context context-type="linenumber">183</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg310" approved="yes">
+        <source xml:space="preserve">Connect to the multi-player network</source>
+        <target xml:space="preserve">Çok oyunculu ağa bağlanın</target>
+        <context-group purpose="location"><context context-type="linenumber">190</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg311" approved="yes">
+        <source xml:space="preserve">FlightGear supporters maintain a network of servers to enable global multi-user flight. This requires a moderately fast Internet connection to be usable. Your aircraft will be visible to other users online, and you will see their aircraft.</source>
+        <target xml:space="preserve">FlightGear destekçileri, küresel çok kullanıcılı uçuş sağlamak için bir sunucu ağı sağlar. Bu, kullanılabilir olması için orta derecede hızlı bir İnternet bağlantısı gerektirir. Uçağınız çevrimiçi olarak diğer kullanıcılar tarafından görülebilecek ve siz de onların uçaklarını göreceksiniz.</target>
+        <context-group purpose="location"><context context-type="linenumber">191</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg312" approved="yes">
+        <source xml:space="preserve">Callsign</source>
+        <target xml:space="preserve">Çağrı işareti</target>
+        <context-group purpose="location"><context context-type="linenumber">207</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg313" approved="yes">
+        <source xml:space="preserve">Enter a callsign you will use online. This is visible to all users and is how ATC services and other pilots will refer to you. (Maximum of seven characters permitted)</source>
+        <target xml:space="preserve">Çevrimiçi kullanacağınız bir çağrı işareti girin. Bu, tüm kullanıcılar tarafından görülebilir ve ATC hizmetleri ile diğer pilotların size nasıl başvuracağıdır. (En fazla yedi karaktere izin verilir)</target>
+        <context-group purpose="location"><context context-type="linenumber">208</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg314" approved="yes">
+        <source xml:space="preserve">Server</source>
+        <target xml:space="preserve">Sunucu</target>
+        <context-group purpose="location"><context context-type="linenumber">223</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg315" approved="yes">
+        <source xml:space="preserve">Select a server close to you for better responsiveness and reduced lag when flying online.</source>
+        <target xml:space="preserve">Çevrimiçi uçarken daha iyi yanıt vermek ve gecikmeyi azaltmak için size yakın bir sunucu seçin.</target>
+        <context-group purpose="location"><context context-type="linenumber">225</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg316" approved="yes">
+        <source xml:space="preserve">Custom server</source>
+        <target xml:space="preserve">Özel sunucu</target>
+        <context-group purpose="location"><context context-type="linenumber">264</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg317" approved="yes">
+        <source xml:space="preserve">Enter a server hostname or IP address, and optionally a port number. (Default port is 5000) For example &apos;localhost:5001&apos;</source>
+        <target xml:space="preserve">Bir sunucu ana bilgisayar adı veya IP adresi ve isteğe bağlı olarak bir bağlantı noktası numarası girin. (Varsayılan bağlantı noktası 5000&apos;dir) Örneğin &apos;localhost:5001&apos;</target>
+        <context-group purpose="location"><context context-type="linenumber">266</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg318" approved="yes">
+        <source xml:space="preserve">Downloads</source>
+        <target xml:space="preserve">İndirilenler</target>
+        <context-group purpose="location"><context context-type="linenumber">314</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg319" approved="yes">
+        <source xml:space="preserve">scenery downloads</source>
+        <target xml:space="preserve">manzara indirmeleri</target>
+        <context-group purpose="location"><context context-type="linenumber">321</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg320" approved="yes">
+        <source xml:space="preserve">Download scenery automatically</source>
+        <target xml:space="preserve">Manzarayı otomatik olarak indir</target>
+        <context-group purpose="location"><context context-type="linenumber">328</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg321" approved="yes">
+        <source xml:space="preserve">FlightGear can automatically download scenery as needed, and check for updates to the scenery. If you disable this option, you will need to download &amp; install scenery using an alternative method.</source>
+        <target xml:space="preserve">FlightGear, manzarayı gerektiği gibi otomatik olarak indirebilir ve manzaradaki güncellemeleri kontrol edebilir. Bu seçeneği devre dışı bırakırsanız, alternatif bir yöntem kullanarak manzarayı indirmeniz ve yüklemeniz gerekecektir.</target>
+        <context-group purpose="location"><context context-type="linenumber">329</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg322" approved="yes">
+        <source xml:space="preserve">Download location</source>
+        <target xml:space="preserve">İndirme konumu</target>
+        <context-group purpose="location"><context context-type="linenumber">344</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg323" approved="yes">
+        <source xml:space="preserve">FlightGear stores downloaded files (scenery and aircraft) in this location. Depending on your settings, it may grow to a considerable size (many gigabytes). If you change the download location, files will need to be downloaded again. When changing this setting, FlightGear will restart to use the new location correctly.</source>
+        <target xml:space="preserve">FlightGear, indirilen dosyaları (manzara ve uçak) bu konumda saklar. Ayarlarınıza bağlı olarak, önemli bir boyuta (birçok gigabayt) kadar büyüyebilir. İndirme konumunu değiştirirseniz, dosyaların yeniden indirilmesi gerekir. Bu ayarı değiştirirken FlightGear yeni konumu doğru şekilde kullanmak için yeniden başlar.</target>
+        <context-group purpose="location"><context context-type="linenumber">345</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg324" approved="yes">
+        <source xml:space="preserve">Choose a location to store download files.</source>
+        <target xml:space="preserve">İndirilen dosyaları depolamak için bir konum seçin.</target>
+        <context-group purpose="location"><context context-type="linenumber">352</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg325" approved="yes">
+        <source xml:space="preserve">View &amp; Window</source>
+        <target xml:space="preserve">Görünüm ve Pencere</target>
+        <context-group purpose="location"><context context-type="linenumber">387</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg326" approved="yes">
+        <source xml:space="preserve">full-screen</source>
+        <target xml:space="preserve">tam ekran</target>
+        <context-group purpose="location"><context context-type="linenumber">394</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg327" approved="yes">
+        <source xml:space="preserve">Start full-screen</source>
+        <target xml:space="preserve">Tam ekranı başlat</target>
+        <context-group purpose="location"><context context-type="linenumber">401</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg328" approved="yes">
+        <source xml:space="preserve">Start the simulator in full-screen mode.</source>
+        <target xml:space="preserve">Simülatörü tam ekran modunda başlatın.</target>
+        <context-group purpose="location"><context context-type="linenumber">402</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg329" approved="yes">
+        <source xml:space="preserve">Window size</source>
+        <target xml:space="preserve">Pencere boyutu</target>
+        <context-group purpose="location"><context context-type="linenumber">410</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg330" approved="yes">
+        <source xml:space="preserve">Select the initial size of the window (this has no effect in full-screen mode).</source>
+        <target xml:space="preserve">Pencerenin başlangıç boyutunu seçin (bunun tam ekran modunda hiçbir etkisi yoktur).</target>
+        <context-group purpose="location"><context context-type="linenumber">411</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg331" approved="yes">
+        <source xml:space="preserve">Custom Size</source>
+        <target xml:space="preserve">Özel Boyut</target>
+        <context-group purpose="location"><context context-type="linenumber">413</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg332" approved="yes">
+        <source xml:space="preserve">Custom size</source>
+        <target xml:space="preserve">Özel boyut</target>
+        <context-group purpose="location"><context context-type="linenumber">424</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg333" approved="yes">
+        <source xml:space="preserve">Enter a custom window size in the form &apos;WWWWW x HHHHH&apos;, for example &apos;1280 x 900&apos;</source>
+        <target xml:space="preserve">&quot;WWWW x HHHHH&quot; biçiminde özel bir pencere boyutu girin, örneğin &quot;1280 x 900&quot;</target>
+        <context-group purpose="location"><context context-type="linenumber">426</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg334" approved="yes">
+        <source xml:space="preserve">Rendering</source>
+        <target xml:space="preserve">İşleme</target>
+        <context-group purpose="location"><context context-type="linenumber">446</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg335" approved="yes">
+        <source xml:space="preserve">Rembrandt</source>
+        <target xml:space="preserve">Rembrandt</target>
+        <context-group purpose="location"><context context-type="linenumber">457</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">465</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg336" approved="yes">
+        <source xml:space="preserve">ALS</source>
+        <target xml:space="preserve">ALS</target>
+        <context-group purpose="location"><context context-type="linenumber">458</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg337" approved="yes">
+        <source xml:space="preserve">anti-aliasing</source>
+        <target xml:space="preserve">kenar yumuşatma</target>
+        <context-group purpose="location"><context context-type="linenumber">459</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg338" approved="yes">
+        <source xml:space="preserve">Default</source>
+        <target xml:space="preserve">Öntanımlı</target>
+        <context-group purpose="location"><context context-type="linenumber">463</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">467</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg339" approved="yes">
+        <source xml:space="preserve">Atmospheric Light Scattering</source>
+        <target xml:space="preserve">Atmosferik Işık Saçılımı</target>
+        <context-group purpose="location"><context context-type="linenumber">464</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">468</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg340" approved="yes">
+        <source xml:space="preserve">Low-spec</source>
+        <target xml:space="preserve">Düşük özellikli</target>
+        <context-group purpose="location"><context context-type="linenumber">469</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg341" approved="yes">
+        <source xml:space="preserve">The default renderer provides standard visuals with maximum compatibility.</source>
+        <target xml:space="preserve">Varsayılan oluşturucu, azami uyumlulukla standart görseller sağlar.</target>
+        <context-group purpose="location"><context context-type="linenumber">471</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg342" approved="yes">
+        <source xml:space="preserve">The ALS renderer uses a sophisticated physical atmospheric model and several other effects to give realistic rendering of large distances.</source>
+        <target xml:space="preserve">ALS oluşturucu, büyük mesafelerin gerçekçi görüntülenmesini sağlamak için gelişmiş bir fiziksel atmosferik model ve birkaç başka efekt kullanır.</target>
+        <context-group purpose="location"><context context-type="linenumber">472</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg343" approved="yes">
+        <source xml:space="preserve">Rembrandt is a configurable multi-pass renderer which supports shadow-maps, cinematic effects and more. However, not all aircraft appear correctly and performance will depend greatly on your system hardware.</source>
+        <target xml:space="preserve">Rembrandt, gölge haritalarını, sinematik efektleri ve daha fazlasını destekleyen, yapılandırılabilir bir çok geçişli oluşturucudur. Ancak, tüm uçaklar doğru görünmüyor ve performans büyük ölçüde sistem donanımınıza bağlı olacaktır.</target>
+        <context-group purpose="location"><context context-type="linenumber">474</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg344" approved="yes">
+        <source xml:space="preserve">The low-spec renderer ensures maximum performance on older computers.</source>
+        <target xml:space="preserve">Düşük özellikli oluşturucu, eski bilgisayarlarda maksimum performans sağlar.</target>
+        <context-group purpose="location"><context context-type="linenumber">477</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg345" approved="yes">
+        <source xml:space="preserve">Renderer</source>
+        <target xml:space="preserve">Oluşturucu</target>
+        <context-group purpose="location"><context context-type="linenumber">486</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg346" approved="yes">
+        <source xml:space="preserve">Anti-aliasing</source>
+        <target xml:space="preserve">Kenar yumuşatma</target>
+        <context-group purpose="location"><context context-type="linenumber">498</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg347" approved="yes">
+        <source xml:space="preserve">Anti-aliasing is disabled when Rembrandt is enabled.</source>
+        <target xml:space="preserve">Rembrandt etkinleştirildiğinde kenar yumuşatma devre dışı bırakılır.</target>
+        <context-group purpose="location"><context context-type="linenumber">500</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg348" approved="yes">
+        <source xml:space="preserve">Anti-aliasing improves the appearance of high-contrast edges and lines. This is especially noticeable on sloping or diagonal edges. Higher settings can reduce performance.</source>
+        <target xml:space="preserve">Kenar yumuşatma, yüksek kontrastlı kenarların ve çizgilerin görünümünü iyileştirir. Bu özellikle eğimli veya çapraz kenarlarda fark edilir. Daha yüksek ayarlar performansı düşürebilir.</target>
+        <context-group purpose="location"><context context-type="linenumber">501</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg349" approved="yes">
+        <source xml:space="preserve">Off</source>
+        <target xml:space="preserve">Kapalı</target>
+        <context-group purpose="location"><context context-type="linenumber">506</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg350" approved="yes">
+        <source xml:space="preserve">Cache graphics for faster loading</source>
+        <target xml:space="preserve">Daha hızlı yükleme için grafikleri önbelleğe alın</target>
+        <context-group purpose="location"><context context-type="linenumber">519</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg351" approved="yes">
+        <source xml:space="preserve">By converting images used in rendering to an optimised format loading times and memory use can be improved. This will consume some disk space and take initial time while images are converted, but subsequent loads will be faster, and use less memory.</source>
+        <target xml:space="preserve">Oluşturmada kullanılan görüntüleri optimize edilmiş bir formata dönüştürerek yükleme süreleri ve bellek kullanımı iyileştirilebilir. Bu, bir miktar disk alanı tüketecek ve görüntüler dönüştürülürken ilk zaman alacak, ancak sonraki yükler daha hızlı olacak ve daha az bellek kullanacak.</target>
+        <context-group purpose="location"><context context-type="linenumber">520</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg352" approved="yes">
+        <source xml:space="preserve">Additional Settings</source>
+        <target xml:space="preserve">Ek ayarlar</target>
+        <context-group purpose="location"><context context-type="linenumber">553</context></context-group>
+      </trans-unit>
+    </group>
+  </body></file>
+  <file original="/home/devel/FGFS/flightgear/src/GUI/qml/Sidebar.qml" datatype="plaintext" source-language="en" target-language="tr"><body>
+    <group restype="x-trolltech-linguist-context" resname="Sidebar">
+      <trans-unit id="_msg353" approved="yes">
+        <source xml:space="preserve">Access additional options here</source>
+        <target xml:space="preserve">Ek seçeneklere buradan erişin</target>
+        <context-group purpose="location"><context context-type="linenumber">67</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg354" approved="yes">
+        <source xml:space="preserve">The selected aircraft is not installed or has updates pending</source>
+        <target xml:space="preserve">Seçilen uçak kurulu değil veya bekleyen güncellemeler var</target>
+        <context-group purpose="location"><context context-type="linenumber">94</context></context-group>
+      </trans-unit>
+    </group>
+  </body></file>
+  <file original="/home/devel/FGFS/flightgear/src/GUI/qml/Summary.qml" datatype="plaintext" source-language="en" target-language="tr"><body>
+    <group restype="x-trolltech-linguist-context" resname="Summary">
+      <trans-unit id="_msg355" approved="yes">
+        <source xml:space="preserve">Licenced under the GNU Public License (GPL) - click for more info</source>
+        <target xml:space="preserve">GNU Kamu Lisansı (GPL) kapsamında lisanslanmıştır - daha fazla bilgi için tıklayın</target>
+        <context-group purpose="location"><context context-type="linenumber">96</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg356" approved="yes">
+        <source xml:space="preserve">Aircraft:</source>
+        <target xml:space="preserve">Uçak:</target>
+        <context-group purpose="location"><context context-type="linenumber">152</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg357" approved="yes">
+        <source xml:space="preserve">No aircraft selected</source>
+        <target xml:space="preserve">Hiçbir uçak seçilmedi</target>
+        <context-group purpose="location"><context context-type="linenumber">160</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg358" approved="yes">
+        <source xml:space="preserve">Access recently used aircraft.</source>
+        <target xml:space="preserve">Son kullanılan uçaklara erişin.</target>
+        <context-group purpose="location"><context context-type="linenumber">186</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg359" approved="yes">
+        <source xml:space="preserve">State:</source>
+        <target xml:space="preserve">Durum:</target>
+        <context-group purpose="location"><context context-type="linenumber">253</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg360" approved="yes">
+        <source xml:space="preserve">Default state</source>
+        <target xml:space="preserve">Varsayılan durum</target>
+        <context-group purpose="location"><context context-type="linenumber">255</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg361" approved="yes">
+        <source xml:space="preserve">Choose the starting condition of the aircraft</source>
+        <target xml:space="preserve">Uçağın başlangıç durumunu seçin</target>
+        <context-group purpose="location"><context context-type="linenumber">284</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg362" approved="yes">
+        <source xml:space="preserve">Location:</source>
+        <target xml:space="preserve">Konum:</target>
+        <context-group purpose="location"><context context-type="linenumber">316</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg363" approved="yes">
+        <source xml:space="preserve">&lt;i&gt;set from user arguments (in Settings)&lt;/i&gt;</source>
+        <target xml:space="preserve">&lt;i&gt;kullanıcı bağımsız değişkenlerinden ayarlayın (Ayarlar&apos;da)&lt;/i&gt;</target>
+        <context-group purpose="location"><context context-type="linenumber">159</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">323</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg364" approved="yes">
+        <source xml:space="preserve">Click to view and change the current location.</source>
+        <target xml:space="preserve">Mevcut konumu görüntülemek ve değiştirmek için tıklayın.</target>
+        <context-group purpose="location"><context context-type="linenumber">337</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg365" approved="yes">
+        <source xml:space="preserve">Access recently used locations</source>
+        <target xml:space="preserve">Son kullanılan konumlara erişin</target>
+        <context-group purpose="location"><context context-type="linenumber">356</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg366" approved="yes">
+        <source xml:space="preserve">Flight Plan:</source>
+        <target xml:space="preserve">Uçuş planı:</target>
+        <context-group purpose="location"><context context-type="linenumber">363</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg367" approved="yes">
+        <source xml:space="preserve">Settings:</source>
+        <target xml:space="preserve">Ayarlar:</target>
+        <context-group purpose="location"><context context-type="linenumber">384</context></context-group>
+      </trans-unit>
+    </group>
+  </body></file>
+  <file original="/home/devel/FGFS/flightgear/src/GUI/qml/UpdateAllPanel.qml" datatype="plaintext" source-language="en" target-language="tr"><body>
+    <group restype="x-trolltech-linguist-context" resname="UpdateAllPanel">
+      <trans-unit id="_msg368" approved="yes">
+        <source xml:space="preserve">%1 aircraft have updates available - download and install them now?</source>
+        <target xml:space="preserve">%1 uçağın kullanılabilir güncellemeleri var - şimdi indirilip yüklensin mi?</target>
+        <context-group purpose="location"><context context-type="linenumber">18</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg369" approved="yes">
+        <source xml:space="preserve">Update all</source>
+        <target xml:space="preserve">Tümünü güncelle</target>
+        <context-group purpose="location"><context context-type="linenumber">25</context></context-group>
+      </trans-unit>
+    </group>
+  </body></file>
+  <file original="/home/devel/FGFS/flightgear/src/GUI/qml/ViewCommandLine.qml" datatype="plaintext" source-language="en" target-language="tr"><body>
+    <group restype="x-trolltech-linguist-context" resname="ViewCommandLine">
+      <trans-unit id="_msg370" approved="yes">
+        <source xml:space="preserve">Copy to clipboard</source>
+        <target xml:space="preserve">Panoya kopyala</target>
+        <context-group purpose="location"><context context-type="linenumber">20</context></context-group>
+      </trans-unit>
+    </group>
+  </body></file>
+  <file original="/home/devel/FGFS/flightgear/src/GUI/AddOnsController.cxx" datatype="cpp" source-language="en" target-language="tr"><body>
+    <group restype="x-trolltech-linguist-context" resname="AddOnsController">
+      <trans-unit id="_msg371" approved="yes">
+        <source xml:space="preserve">Choose aircraft folder</source>
+        <target xml:space="preserve">Uçak klasörünü seçin</target>
+        <context-group purpose="location"><context context-type="linenumber">137</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg372" approved="yes">
+        <source xml:space="preserve">No aircraft found in the folder &apos;%1&apos; - add anyway?</source>
+        <target xml:space="preserve">&apos;%1&apos; klasöründe uçak bulunamadı - yine de eklensin mi?</target>
+        <context-group purpose="location"><context context-type="linenumber">161</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg373" approved="yes">
+        <source xml:space="preserve">Choose addon module folder</source>
+        <target xml:space="preserve">Eklenti modülü klasörünü seçin</target>
+        <context-group purpose="location"><context context-type="linenumber">180</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg374" approved="yes">
+        <source xml:space="preserve">The folder &apos;%1&apos; doesn&apos;t appear to contain an addon module - add anyway?</source>
+        <target xml:space="preserve">&apos;%1&apos; klasörü bir eklenti modülü içermiyor - yine de eklensin mi?</target>
+        <context-group purpose="location"><context context-type="linenumber">199</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg375" approved="yes">
+        <source xml:space="preserve">Added modules should contain at least both of the following files: addon-metadata.xml, addon-main.nas.</source>
+        <target xml:space="preserve">Eklenen modüller en az şu dosyalardan her ikisini de içermelidir: addon-metadata.xml, addon-main.nas.</target>
+        <context-group purpose="location"><context context-type="linenumber">202</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg376" approved="yes">
+        <source xml:space="preserve">Choose scenery folder</source>
+        <target xml:space="preserve">Manzara klasörünü seçin</target>
+        <context-group purpose="location"><context context-type="linenumber">230</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg377" approved="yes">
+        <source xml:space="preserve">The folder &apos;%1&apos; doesn&apos;t appear to contain scenery - add anyway?</source>
+        <target xml:space="preserve">&apos;%1&apos; klasörü manzara içermiyor - yine de eklensin mi?</target>
+        <context-group purpose="location"><context context-type="linenumber">249</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg378" approved="yes">
+        <source xml:space="preserve">Added scenery should contain at least one of the following folders: Objects, Terrain, Buildings, Roads, Pylons, NavData, Airports.</source>
+        <target xml:space="preserve">Eklenen manzara şu klasörlerden en az birini içermelidir: Objects, Terrain, Buildings, Roads, Pylons, NavData, Airports.</target>
+        <context-group purpose="location"><context context-type="linenumber">252</context></context-group>
+      </trans-unit>
+    </group>
+  </body></file>
+  <file original="/home/devel/FGFS/flightgear/src/GUI/AddonsModel.cxx" datatype="cpp" source-language="en" target-language="tr"><body>
+    <group restype="x-trolltech-linguist-context" resname="AddonsModel">
+      <trans-unit id="_msg379" approved="yes">
+        <source xml:space="preserve">%1 - %2</source>
+        <target xml:space="preserve">%1 - %2</target>
+        <context-group purpose="location"><context context-type="linenumber">102</context></context-group>
+      </trans-unit>
+    </group>
+  </body></file>
+  <file original="/home/devel/FGFS/flightgear/src/GUI/AircraftModel.cxx" datatype="cpp" source-language="en" target-language="tr"><body>
+    <group restype="x-trolltech-linguist-context" resname="AircraftItemModel">
+      <trans-unit id="_msg380" approved="yes">
+        <source xml:space="preserve">Missing description for: %1</source>
+        <target xml:space="preserve">Şunun açıklaması eksik: %1</target>
+        <context-group purpose="location"><context context-type="linenumber">303</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">352</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">360</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg381" approved="yes">
+        <source xml:space="preserve">Invalid package checksum</source>
+        <target xml:space="preserve">Geçersiz paket sağlama toplamı</target>
+        <context-group purpose="location"><context context-type="linenumber">651</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg382" approved="yes">
+        <source xml:space="preserve">Download failed</source>
+        <target xml:space="preserve">Yükleme başarısız</target>
+        <context-group purpose="location"><context context-type="linenumber">653</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg383" approved="yes">
+        <source xml:space="preserve">Package could not be extracted</source>
+        <target xml:space="preserve">Paket çıkarılamadı</target>
+        <context-group purpose="location"><context context-type="linenumber">655</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg384" approved="yes">
+        <source xml:space="preserve">A local file-system error occurred</source>
+        <target xml:space="preserve">Yerel bir dosya sistemi hatası oluştu</target>
+        <context-group purpose="location"><context context-type="linenumber">657</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg385" approved="yes">
+        <source xml:space="preserve">Package file missing from download server</source>
+        <target xml:space="preserve">İndirme sunucusunda paket dosyası eksik</target>
+        <context-group purpose="location"><context context-type="linenumber">659</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg386" approved="yes">
+        <source xml:space="preserve">Unknown reason</source>
+        <target xml:space="preserve">Bilinmeyen sebep</target>
+        <context-group purpose="location"><context context-type="linenumber">662</context></context-group>
+      </trans-unit>
+    </group>
+  </body></file>
+  <file original="/home/devel/FGFS/flightgear/src/GUI/AircraftSearchFilterModel.cxx" datatype="cpp" source-language="en" target-language="tr"><body>
+    <group restype="x-trolltech-linguist-context" resname="AircraftProxyModel">
+      <trans-unit id="_msg387" approved="yes">
+        <source xml:space="preserve">(%1 of %2 aircraft)</source>
+        <target xml:space="preserve">(%2 uçağın %1&apos;i)</target>
+        <context-group purpose="location"><context context-type="linenumber">90</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg388" approved="yes">
+        <source xml:space="preserve">(%1 aircraft)</source>
+        <target xml:space="preserve">(%1 uçak)</target>
+        <context-group purpose="location"><context context-type="linenumber">93</context></context-group>
+      </trans-unit>
+    </group>
+  </body></file>
+  <file original="/home/devel/FGFS/flightgear/src/GUI/CatalogListModel.cxx" datatype="cpp" source-language="en" target-language="tr"><body>
+    <group restype="x-trolltech-linguist-context" resname="CatalogListModel">
+      <trans-unit id="_msg389" approved="yes">
+        <source xml:space="preserve">The catalog data was not found on the server at the expected location (URL)</source>
+        <target xml:space="preserve">Katalog verileri sunucuda beklenen konumda (URL) bulunamadı</target>
+        <context-group purpose="location"><context context-type="linenumber">112</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg390" approved="yes">
+        <source xml:space="preserve">The catalog is not compatible with the version of FlightGear</source>
+        <target xml:space="preserve">Katalog, FlightGear sürümüyle uyumlu değil</target>
+        <context-group purpose="location"><context context-type="linenumber">115</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg391" approved="yes">
+        <source xml:space="preserve">The catalog server is blocking access from some reason (forbidden)</source>
+        <target xml:space="preserve">Katalog sunucusu herhangi bir nedenle erişimi engelliyor (yasak)</target>
+        <context-group purpose="location"><context context-type="linenumber">118</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg392" approved="yes">
+        <source xml:space="preserve">disabled due to an internal error</source>
+        <target xml:space="preserve">dahili bir hata nedeniyle devre dışı bırakıldı</target>
+        <context-group purpose="location"><context context-type="linenumber">121</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg393" approved="yes">
+        <source xml:space="preserve">%1 - %2</source>
+        <target xml:space="preserve">%1 - %2</target>
+        <context-group purpose="location"><context context-type="linenumber">124</context></context-group>
+      </trans-unit>
+    </group>
+  </body></file>
+  <file original="/home/devel/FGFS/flightgear/src/GUI/FlightPlanController.cxx" datatype="cpp" source-language="en" target-language="tr"><body>
+    <group restype="x-trolltech-linguist-context" resname="FlightPlanController">
+      <trans-unit id="_msg394" approved="yes">
+        <source xml:space="preserve">No flight-plan</source>
+        <target xml:space="preserve">Uçuş planı yok</target>
+        <context-group purpose="location"><context context-type="linenumber">342</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg395" approved="yes">
+        <source xml:space="preserve">From %1 (%2) to %3 (%4)</source>
+        <target xml:space="preserve">%1 (%2)&apos;den %3&apos;e (%4)</target>
+        <context-group purpose="location"><context context-type="linenumber">345</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg396" approved="yes">
+        <source xml:space="preserve">Load a flight-plan</source>
+        <target xml:space="preserve">Bir uçuş planı yükleyin</target>
+        <context-group purpose="location"><context context-type="linenumber">536</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg397" approved="yes">
+        <source xml:space="preserve">Save flight-plan</source>
+        <target xml:space="preserve">Uçuş planını kaydet</target>
+        <context-group purpose="location"><context context-type="linenumber">552</context></context-group>
+      </trans-unit>
+    </group>
+  </body></file>
+  <file original="/home/devel/FGFS/flightgear/src/GUI/LaunchConfig.cxx" datatype="cpp" source-language="en" target-language="tr"><body>
+    <group restype="x-trolltech-linguist-context" resname="LaunchConfig">
+      <trans-unit id="_msg398" approved="yes">
+        <source xml:space="preserve">&lt;p&gt;Options passed on the command line:&lt;/p&gt;
+</source>
+        <target xml:space="preserve">&lt;p&gt;Komut satırında geçirilen seçenekler:&lt;/p&gt;
+</target>
+        <context-group purpose="location"><context context-type="linenumber">128</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg399" approved="yes">
+        <source xml:space="preserve">&lt;p&gt;Options set in the launcher:&lt;/p&gt;
+</source>
+        <target xml:space="preserve">&lt;p&gt;Başlatıcıda ayarlanan seçenekler:&lt;/p&gt;
+</target>
+        <context-group purpose="location"><context context-type="linenumber">141</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg400" approved="yes">
+        <source xml:space="preserve"> (will be skipped due to being specified as an additional argument)</source>
+        <target xml:space="preserve"> (ek argüman olarak belirtildiği için atlanacak)</target>
+        <context-group purpose="location"><context context-type="linenumber">158</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg401" approved="yes">
+        <source xml:space="preserve">&lt;p&gt;Options set as additional arguments:&lt;/p&gt;
+</source>
+        <target xml:space="preserve">&lt;p&gt;Ek argüman olarak ayarlanan seçenekler:&lt;/p&gt;
+</target>
+        <context-group purpose="location"><context context-type="linenumber">164</context></context-group>
+      </trans-unit>
+    </group>
+  </body></file>
+  <file original="/home/devel/FGFS/flightgear/src/GUI/LauncherController.cxx" datatype="cpp" source-language="en" target-language="tr"><body>
+    <group restype="x-trolltech-linguist-context" resname="LauncherController">
+      <trans-unit id="_msg402" approved="yes">
+        <source xml:space="preserve">Create download folder?</source>
+        <target xml:space="preserve">İndirme klasörü oluştur?</target>
+        <context-group purpose="location"><context context-type="linenumber">361</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg403" approved="yes">
+        <source xml:space="preserve">The selected location for downloads does not exist. (%1) Create it?</source>
+        <target xml:space="preserve">İndirmeler için seçilen konum mevcut değil. (%1) Oluşturulsun mu?</target>
+        <context-group purpose="location"><context context-type="linenumber">362</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg404" approved="yes">
+        <source xml:space="preserve">Aircraft installation failed</source>
+        <target xml:space="preserve">Uçak kurulumu başarısız oldu</target>
+        <context-group purpose="location"><context context-type="linenumber">788</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg405" approved="yes">
+        <source xml:space="preserve">An error occurred installing the aircraft %1: %2</source>
+        <target xml:space="preserve">%1 uçağı yüklenirken bir hata oluştu: %2</target>
+        <context-group purpose="location"><context context-type="linenumber">789</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg406" approved="yes">
+        <source xml:space="preserve">Restore all settings to defaults?</source>
+        <target xml:space="preserve">Tüm ayarlar varsayılanlara geri yüklensin mi?</target>
+        <context-group purpose="location"><context context-type="linenumber">808</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg407" approved="yes">
+        <source xml:space="preserve">Restoring settings to their defaults may affect available add-ons such as scenery or aircraft.</source>
+        <target xml:space="preserve">Ayarları varsayılan değerlerine döndürmek, manzara veya uçak gibi mevcut eklentileri etkileyebilir.</target>
+        <context-group purpose="location"><context context-type="linenumber">809</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg408" approved="yes">
+        <source xml:space="preserve">Restore and restart now</source>
+        <target xml:space="preserve">Şimdi geri yükle ve yeniden başlat</target>
+        <context-group purpose="location"><context context-type="linenumber">810</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg409" approved="yes">
+        <source xml:space="preserve">Currently the built-in data files are being used</source>
+        <target xml:space="preserve">Şu anda yerleşik veri dosyaları kullanılıyor</target>
+        <context-group purpose="location"><context context-type="linenumber">835</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg410" approved="yes">
+        <source xml:space="preserve">Currently using location: %1</source>
+        <target xml:space="preserve">Şu anda konum kullanılıyor: %1</target>
+        <context-group purpose="location"><context context-type="linenumber">838</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg411" approved="yes">
+        <source xml:space="preserve">Change the data files used by FlightGear?</source>
+        <target xml:space="preserve">FlightGear tarafından kullanılan veri dosyaları değiştirilsin mi?</target>
+        <context-group purpose="location"><context context-type="linenumber">842</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg412" approved="yes">
+        <source xml:space="preserve">FlightGear requires additional files to operate. (Also called the base package, or fg-data) You can restart FlightGear and choose a different data files location, or restore the default setting. %1</source>
+        <target xml:space="preserve">FlightGear&apos;ın çalışması için ek dosyalar gerekir. (Ayrıca temel paket veya fg-data olarak da adlandırılır) FlightGear&apos;ı yeniden başlatabilir ve farklı bir veri dosyası konumu seçebilir veya varsayılan ayarı geri yükleyebilirsiniz. %1</target>
+        <context-group purpose="location"><context context-type="linenumber">843</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg413" approved="yes">
+        <source xml:space="preserve">Restart FlightGear now</source>
+        <target xml:space="preserve">FlightGear&apos;ı şimdi yeniden başlatın</target>
+        <context-group purpose="location"><context context-type="linenumber">847</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg414" approved="yes">
+        <source xml:space="preserve">Choose a saved configuration</source>
+        <target xml:space="preserve">Kaydedilmiş bir konfigürasyon seçin</target>
+        <context-group purpose="location"><context context-type="linenumber">863</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg415" approved="yes">
+        <source xml:space="preserve">Save the current configuration</source>
+        <target xml:space="preserve">Mevcut yapılandırmayı kaydet</target>
+        <context-group purpose="location"><context context-type="linenumber">873</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg416" approved="yes">
+        <source xml:space="preserve">Fly!</source>
+        <target xml:space="preserve">Uçuş!</target>
+        <context-group purpose="location"><context context-type="linenumber">932</context></context-group>
+        <context-group><context context-type="x-gettext-msgctxt">For a helicopter</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg417" approved="yes">
+        <source xml:space="preserve">Fly!</source>
+        <target xml:space="preserve">Uçuş!</target>
+        <context-group purpose="location"><context context-type="linenumber">935</context></context-group>
+        <context-group><context context-type="x-gettext-msgctxt">For a spaceship</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg418" approved="yes">
+        <source xml:space="preserve">Fly!</source>
+        <target xml:space="preserve">Uçuş!</target>
+        <context-group purpose="location"><context context-type="linenumber">939</context></context-group>
+      </trans-unit>
+    </group>
+  </body></file>
+  <file original="/home/devel/FGFS/flightgear/src/GUI/LauncherMainWindow.cxx" datatype="cpp" source-language="en" target-language="tr"><body>
+    <group restype="x-trolltech-linguist-context" resname="LauncherMainWindow">
+      <trans-unit id="_msg419" approved="yes">
+        <source xml:space="preserve">File</source>
+        <target xml:space="preserve">Dosya</target>
+        <context-group purpose="location"><context context-type="linenumber">58</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg420" approved="yes">
+        <source xml:space="preserve">Open saved configuration...</source>
+        <target xml:space="preserve">Kaydedilmiş yapılandırmayı aç...</target>
+        <context-group purpose="location"><context context-type="linenumber">59</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg421" approved="yes">
+        <source xml:space="preserve">Save configuration as...</source>
+        <target xml:space="preserve">Yapılandırmayı farklı kaydet...</target>
+        <context-group purpose="location"><context context-type="linenumber">64</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg422" approved="yes">
+        <source xml:space="preserve">Tools</source>
+        <target xml:space="preserve">Araçlar</target>
+        <context-group purpose="location"><context context-type="linenumber">72</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg423" approved="yes">
+        <source xml:space="preserve">Restore defaults...</source>
+        <target xml:space="preserve">Varsayılanları geri yükle...</target>
+        <context-group purpose="location"><context context-type="linenumber">73</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg424" approved="yes">
+        <source xml:space="preserve">Select data files location...</source>
+        <target xml:space="preserve">Veri dosyaları konumunu seçin...</target>
+        <context-group purpose="location"><context context-type="linenumber">78</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg425" approved="yes">
+        <source xml:space="preserve">View command-line</source>
+        <target xml:space="preserve">Komut satırını görüntüle</target>
+        <context-group purpose="location"><context context-type="linenumber">83</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg426" approved="yes">
+        <source xml:space="preserve">Problems occurred loading the user interface. This is usually due to missing modules on your system. Please report this error to the FlightGear developer list or forum, and take care to mention your system distribution, etc. Please also include the information provided below.
+</source>
+        <target xml:space="preserve">Kullanıcı arayüzü yüklenirken sorunlar oluştu. Bu genellikle sisteminizdeki eksik modüllerden kaynaklanır. Lütfen bu hatayı FlightGear geliştirici listesine veya foruma bildirin ve sistem dağıtımınızdan vb. bahsetmeye dikkat edin. Lütfen aşağıda verilen bilgileri de ekleyin.
+</target>
+        <context-group purpose="location"><context context-type="linenumber">193</context></context-group>
+      </trans-unit>
+    </group>
+  </body></file>
+  <file original="/home/devel/FGFS/flightgear/src/GUI/LocationController.cxx" datatype="cpp" source-language="en" target-language="tr"><body>
+    <group restype="x-trolltech-linguist-context" resname="LocationController">
+      <trans-unit id="_msg427" approved="yes">
+        <source xml:space="preserve">N</source>
+        <target xml:space="preserve">K</target>
+        <context-group purpose="location"><context context-type="linenumber">1076</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg428" approved="yes">
+        <source xml:space="preserve">NE</source>
+        <target xml:space="preserve">KD</target>
+        <context-group purpose="location"><context context-type="linenumber">1077</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg429" approved="yes">
+        <source xml:space="preserve">E</source>
+        <target xml:space="preserve">D</target>
+        <context-group purpose="location"><context context-type="linenumber">1078</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg430" approved="yes">
+        <source xml:space="preserve">SE</source>
+        <target xml:space="preserve">GD</target>
+        <context-group purpose="location"><context context-type="linenumber">1079</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg431" approved="yes">
+        <source xml:space="preserve">S</source>
+        <target xml:space="preserve">G</target>
+        <context-group purpose="location"><context context-type="linenumber">1080</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg432" approved="yes">
+        <source xml:space="preserve">SW</source>
+        <target xml:space="preserve">GB</target>
+        <context-group purpose="location"><context context-type="linenumber">1081</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg433" approved="yes">
+        <source xml:space="preserve">W</source>
+        <target xml:space="preserve">B</target>
+        <context-group purpose="location"><context context-type="linenumber">1082</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg434" approved="yes">
+        <source xml:space="preserve">NW</source>
+        <target xml:space="preserve">KB</target>
+        <context-group purpose="location"><context context-type="linenumber">1083</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg435" approved="yes">
+        <source xml:space="preserve">at position %1</source>
+        <target xml:space="preserve">%1 konumunda</target>
+        <context-group purpose="location"><context context-type="linenumber">1098</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg436" approved="yes">
+        <source xml:space="preserve">%1nm abeam</source>
+        <target xml:space="preserve">%1nm büyük</target>
+        <context-group purpose="location"><context context-type="linenumber">1105</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg437" approved="yes">
+        <source xml:space="preserve">on %1nm final to</source>
+        <target xml:space="preserve">%1nm finalinde</target>
+        <context-group purpose="location"><context context-type="linenumber">1107</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg438" approved="yes">
+        <source xml:space="preserve">on deck at %1 on</source>
+        <target xml:space="preserve">güvertede %1 üzerinde</target>
+        <context-group purpose="location"><context context-type="linenumber">1109</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg439" approved="yes">
+        <source xml:space="preserve">%1 carrier %2 (%3)</source>
+        <target xml:space="preserve">%1 taşıyıcı %2 (%3)</target>
+        <context-group purpose="location"><context context-type="linenumber">1111</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg440" approved="yes">
+        <source xml:space="preserve">No location selected</source>
+        <target xml:space="preserve">Konum seçilmedi</target>
+        <context-group purpose="location"><context context-type="linenumber">1114</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">1177</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg441" approved="yes">
+        <source xml:space="preserve">on %1-mile final to active runway</source>
+        <target xml:space="preserve">aktif piste %1 millik finalde</target>
+        <context-group purpose="location"><context context-type="linenumber">1132</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg442" approved="yes">
+        <source xml:space="preserve">on active runway</source>
+        <target xml:space="preserve">aktif pistte</target>
+        <context-group purpose="location"><context context-type="linenumber">1134</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg443" approved="yes">
+        <source xml:space="preserve">at an available parking position</source>
+        <target xml:space="preserve">müsait bir park konumunda</target>
+        <context-group purpose="location"><context context-type="linenumber">1137</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg444" approved="yes">
+        <source xml:space="preserve">runway %1</source>
+        <target xml:space="preserve">pist %1</target>
+        <context-group purpose="location"><context context-type="linenumber">1139</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg445" approved="yes">
+        <source xml:space="preserve">on %2-mile final to %1</source>
+        <target xml:space="preserve">%1 için %2 mil finalinde</target>
+        <context-group purpose="location"><context context-type="linenumber">1142</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg446" approved="yes">
+        <source xml:space="preserve">on %1</source>
+        <target xml:space="preserve">%1 de</target>
+        <context-group purpose="location"><context context-type="linenumber">1144</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg447" approved="yes">
+        <source xml:space="preserve">on pad %1</source>
+        <target xml:space="preserve">%1 pedinde</target>
+        <context-group purpose="location"><context context-type="linenumber">1147</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg448" approved="yes">
+        <source xml:space="preserve">at parking position %1</source>
+        <target xml:space="preserve">%1 park konumunda</target>
+        <context-group purpose="location"><context context-type="linenumber">1149</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg449" approved="yes">
+        <source xml:space="preserve">%2 (%1): %3</source>
+        <target xml:space="preserve">%2 (%1): %3</target>
+        <context-group purpose="location"><context context-type="linenumber">1152</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg450" approved="yes">
+        <source xml:space="preserve">at</source>
+        <target xml:space="preserve">de</target>
+        <context-group purpose="location"><context context-type="linenumber">1154</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg451" approved="yes">
+        <source xml:space="preserve">%1nm %2 of</source>
+        <target xml:space="preserve">%2 de %1nm</target>
+        <context-group purpose="location"><context context-type="linenumber">1156</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg452" approved="yes">
+        <source xml:space="preserve">%2 waypoint %1</source>
+        <target xml:space="preserve">%2 yol noktası %1</target>
+        <context-group purpose="location"><context context-type="linenumber">1168</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg453" approved="yes">
+        <source xml:space="preserve">%4 %1 %2 (%3)</source>
+        <target xml:space="preserve">%4 %1 %2 (%3)</target>
+        <context-group purpose="location"><context context-type="linenumber">1174</context></context-group>
+      </trans-unit>
+    </group>
+  </body></file>
+  <file original="/home/devel/FGFS/flightgear/src/GUI/MPServersModel.cpp" datatype="cpp" source-language="en" target-language="tr"><body>
+    <group restype="x-trolltech-linguist-context" resname="MPServersModel">
+      <trans-unit id="_msg454" approved="yes">
+        <source xml:space="preserve">No servers available</source>
+        <target xml:space="preserve">Kullanılabilir sunucu yok</target>
+        <context-group purpose="location"><context context-type="linenumber">49</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg455" approved="yes">
+        <source xml:space="preserve">Custom server</source>
+        <target xml:space="preserve">Özel sunucu</target>
+        <context-group purpose="location"><context context-type="linenumber">57</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg456" approved="yes">
+        <source xml:space="preserve">%1 - %2</source>
+        <target xml:space="preserve">%1 - %2</target>
+        <context-group purpose="location"><context context-type="linenumber">67</context></context-group>
+      </trans-unit>
+    </group>
+  </body></file>
+  <file original="/home/devel/FGFS/flightgear/src/GUI/QmlAircraftInfo.cxx" datatype="cpp" source-language="en" target-language="tr"><body>
+    <group restype="x-trolltech-linguist-context" resname="QObject">
+      <trans-unit id="_msg457" approved="yes">
+        <source xml:space="preserve">On approach</source>
+        <target xml:space="preserve">Yaklaşırken</target>
+        <context-group purpose="location"><context context-type="linenumber">128</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg458" approved="yes">
+        <source xml:space="preserve">Ready for take-off</source>
+        <target xml:space="preserve">Kalkış için hazır</target>
+        <context-group purpose="location"><context context-type="linenumber">130</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg459" approved="yes">
+        <source xml:space="preserve">Parked, cold &amp; dark</source>
+        <target xml:space="preserve">Park edilmiş, soğuk ve karanlık</target>
+        <context-group purpose="location"><context context-type="linenumber">132</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg460" approved="yes">
+        <source xml:space="preserve">Automatic</source>
+        <target xml:space="preserve">Otomatik</target>
+        <context-group purpose="location"><context context-type="linenumber">134</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg461" approved="yes">
+        <source xml:space="preserve">Cruise</source>
+        <target xml:space="preserve">Dolaşma</target>
+        <context-group purpose="location"><context context-type="linenumber">136</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg462" approved="yes">
+        <source xml:space="preserve">Ready to taxi</source>
+        <target xml:space="preserve">Taksiye hazır</target>
+        <context-group purpose="location"><context context-type="linenumber">138</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg463" approved="yes">
+        <source xml:space="preserve">On approach to a carrier</source>
+        <target xml:space="preserve">Bir taşıyıcıya yaklaşırken</target>
+        <context-group purpose="location"><context context-type="linenumber">140</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg464" approved="yes">
+        <source xml:space="preserve">Ready for catapult launch</source>
+        <target xml:space="preserve">Mancınık fırlatmaya hazır</target>
+        <context-group purpose="location"><context context-type="linenumber">142</context></context-group>
+      </trans-unit>
+    </group>
+    <group restype="x-trolltech-linguist-context" resname="StatesModel">
+      <trans-unit id="_msg465" approved="yes">
+        <source xml:space="preserve">Select state based on startup position.</source>
+        <target xml:space="preserve">Başlangıç konumuna göre durumu seçin.</target>
+        <context-group purpose="location"><context context-type="linenumber">190</context></context-group>
+      </trans-unit>
+    </group>
+  </body></file>
+  <file original="/home/devel/FGFS/flightgear/src/GUI/QtLauncher.cxx" datatype="cpp" source-language="en" target-language="tr"><body>
+    <group restype="x-trolltech-linguist-context" resname="initNavCache">
+      <trans-unit id="_msg466" approved="yes">
+        <source xml:space="preserve">Reading airport data</source>
+        <target xml:space="preserve">Havaalanı verilerini okunuyor</target>
+        <context-group purpose="location"><context context-type="linenumber">98</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg467" approved="yes">
+        <source xml:space="preserve">Loading airports</source>
+        <target xml:space="preserve">Havaalanları yükleniyor</target>
+        <context-group purpose="location"><context context-type="linenumber">99</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg468" approved="yes">
+        <source xml:space="preserve">Loading waypoint data</source>
+        <target xml:space="preserve">Ara nokta verilerinin yükleniyor</target>
+        <context-group purpose="location"><context context-type="linenumber">100</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg469" approved="yes">
+        <source xml:space="preserve">Loading navigation data</source>
+        <target xml:space="preserve">Navigasyon verileri yükleniyor</target>
+        <context-group purpose="location"><context context-type="linenumber">101</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg470" approved="yes">
+        <source xml:space="preserve">Loading point-of-interest data</source>
+        <target xml:space="preserve">İlgi noktası verileri yükleniyor</target>
+        <context-group purpose="location"><context context-type="linenumber">102</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg471" approved="yes">
+        <source xml:space="preserve">Initialising navigation data, this may take several minutes</source>
+        <target xml:space="preserve">Navigasyon verileri başlatılıyor, bu işlem birkaç dakika sürebilir</target>
+        <context-group purpose="location"><context context-type="linenumber">107</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg472" approved="yes">
+        <source xml:space="preserve">Another copy of FlightGear is creating the navigation database. Waiting for it to finish.</source>
+        <target xml:space="preserve">FlightGear&apos;ın başka bir kopyası, navigasyon veritabanını oluşturuyor. Bitirmesini bekliyorum.</target>
+        <context-group purpose="location"><context context-type="linenumber">113</context></context-group>
+      </trans-unit>
+    </group>
+    <group restype="x-trolltech-linguist-context" resname="macTranslationWarning">
+      <trans-unit id="_msg473" approved="yes">
+        <source xml:space="preserve">Application running from download location</source>
+        <target xml:space="preserve">İndirme konumundan çalışan uygulama</target>
+        <context-group purpose="location"><context context-type="linenumber">487</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg474" approved="yes">
+        <source xml:space="preserve">FlightGear is running from the download image. For better performance and to avoid potential problems, please copy FlightGear to some other location, such as your desktop or Applications folder.</source>
+        <target xml:space="preserve">FlightGear, indirme görüntüsünden çalışıyor. Daha iyi performans ve olası sorunlardan kaçınmak için lütfen FlightGear&apos;ı masaüstünüz veya Uygulamalar klasörünüz gibi başka bir konuma kopyalayın.</target>
+        <context-group purpose="location"><context context-type="linenumber">488</context></context-group>
+      </trans-unit>
+    </group>
+    <group restype="x-trolltech-linguist-context" resname="LockFileDialog">
+      <trans-unit id="_msg475" approved="yes">
+        <source xml:space="preserve">Multiple copies of FlightGear running</source>
+        <target xml:space="preserve">FlightGear&apos;ın birden çok kopyası çalışıyor</target>
+        <context-group purpose="location"><context context-type="linenumber">742</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg476" approved="yes">
+        <source xml:space="preserve">FlightGear has detected another copy is already running. This copy will run in read-only mode, so downloads will not be possible, and settings will not be saved.</source>
+        <target xml:space="preserve">FlightGear başka bir kopyanın zaten çalışmakta olduğunu tespit etti. Bu kopya salt okunur modda çalışacak, bu nedenle indirmeler mümkün olmayacak ve ayarlar kaydedilmeyecek.</target>
+        <context-group purpose="location"><context context-type="linenumber">744</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg477" approved="yes">
+        <source xml:space="preserve">If you are sure another copy is not running on this computer, you can choose to reset the lock file, and run this copy as normal. Alternatively, you can close this copy of the software.</source>
+        <target xml:space="preserve">Bu bilgisayarda başka bir kopyanın çalışmadığından eminseniz, kilit dosyasını sıfırlamayı seçebilir ve bu kopyayı normal şekilde çalıştırabilirsiniz. Alternatif olarak, yazılımın bu kopyasını kapatabilirsiniz.</target>
+        <context-group purpose="location"><context context-type="linenumber">749</context></context-group>
+      </trans-unit>
+    </group>
+  </body></file>
+  <file original="/home/devel/FGFS/flightgear/src/GUI/UnitsModel.cxx" datatype="cpp" source-language="en" target-language="tr"><body>
+    <group restype="x-trolltech-linguist-context" resname="UnitsModel">
+      <trans-unit id="_msg478" approved="yes">
+        <source xml:space="preserve">ft</source>
+        <target xml:space="preserve">fit</target>
+        <context-group purpose="location"><context context-type="linenumber">73</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg479" approved="yes">
+        <source xml:space="preserve">feet above sea-level (MSL)</source>
+        <target xml:space="preserve">deniz seviyesinden ayak yüksekliği (MSL)</target>
+        <context-group purpose="location"><context context-type="linenumber">73</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg480" approved="yes">
+        <source xml:space="preserve">ft AGL</source>
+        <target xml:space="preserve">ft AGL</target>
+        <context-group purpose="location"><context context-type="linenumber">74</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg481" approved="yes">
+        <source xml:space="preserve">feet above ground level (AGL)</source>
+        <target xml:space="preserve">yerden ayak yüksekliği (AGL)</target>
+        <context-group purpose="location"><context context-type="linenumber">74</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg482" approved="yes">
+        <source xml:space="preserve">ft above field</source>
+        <target xml:space="preserve">alanın üstünde ft</target>
+        <context-group purpose="location"><context context-type="linenumber">75</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg483" approved="yes">
+        <source xml:space="preserve">feet above airfield</source>
+        <target xml:space="preserve">hava sahasının üzerinde feet</target>
+        <context-group purpose="location"><context context-type="linenumber">75</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg484" approved="yes">
+        <source xml:space="preserve">FL</source>
+        <target xml:space="preserve">US</target>
+        <context-group purpose="location"><context context-type="linenumber">76</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg485" approved="yes">
+        <source xml:space="preserve">Flight-level</source>
+        <target xml:space="preserve">Uçuş seviyesi</target>
+        <context-group purpose="location"><context context-type="linenumber">76</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg486" approved="yes">
+        <source xml:space="preserve">m</source>
+        <target xml:space="preserve">m</target>
+        <context-group purpose="location"><context context-type="linenumber">77</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg487" approved="yes">
+        <source xml:space="preserve">meters above sea-level (MSL)</source>
+        <target xml:space="preserve">deniz seviyesinden metre (MSL)</target>
+        <context-group purpose="location"><context context-type="linenumber">77</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg488" approved="yes">
+        <source xml:space="preserve">kts</source>
+        <target xml:space="preserve">kts</target>
+        <context-group purpose="location"><context context-type="linenumber">78</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg489" approved="yes">
+        <source xml:space="preserve">Knots</source>
+        <target xml:space="preserve">Knots</target>
+        <context-group purpose="location"><context context-type="linenumber">78</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg490" approved="yes">
+        <source xml:space="preserve">M</source>
+        <target xml:space="preserve">M</target>
+        <context-group purpose="location"><context context-type="linenumber">79</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg491" approved="yes">
+        <source xml:space="preserve">Mach</source>
+        <target xml:space="preserve">Mach</target>
+        <context-group purpose="location"><context context-type="linenumber">79</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg492" approved="yes">
+        <source xml:space="preserve">KM/H</source>
+        <target xml:space="preserve">KM/S</target>
+        <context-group purpose="location"><context context-type="linenumber">80</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg493" approved="yes">
+        <source xml:space="preserve">Kilometers/hour</source>
+        <target xml:space="preserve">Kilometre/saat</target>
+        <context-group purpose="location"><context context-type="linenumber">80</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg494" approved="yes">
+        <source xml:space="preserve">°True</source>
+        <target xml:space="preserve">°Doğru</target>
+        <context-group purpose="location"><context context-type="linenumber">81</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg495" approved="yes">
+        <source xml:space="preserve">degrees true</source>
+        <target xml:space="preserve">derece doğru</target>
+        <context-group purpose="location"><context context-type="linenumber">81</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg496" approved="yes">
+        <source xml:space="preserve">°Mag</source>
+        <target xml:space="preserve">°Mag</target>
+        <context-group purpose="location"><context context-type="linenumber">82</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg497" approved="yes">
+        <source xml:space="preserve">degrees magnetic</source>
+        <target xml:space="preserve">derece manyetik</target>
+        <context-group purpose="location"><context context-type="linenumber">82</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg498" approved="yes">
+        <source xml:space="preserve">UTC</source>
+        <target xml:space="preserve">UTC</target>
+        <context-group purpose="location"><context context-type="linenumber">83</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg499" approved="yes">
+        <source xml:space="preserve">Universal coordinated time</source>
+        <target xml:space="preserve">Evrensel koordineli zaman</target>
+        <context-group purpose="location"><context context-type="linenumber">83</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg500" approved="yes">
+        <source xml:space="preserve">Local</source>
+        <target xml:space="preserve">Yerel</target>
+        <context-group purpose="location"><context context-type="linenumber">84</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg501" approved="yes">
+        <source xml:space="preserve">Local time</source>
+        <target xml:space="preserve">Yerel zaman</target>
+        <context-group purpose="location"><context context-type="linenumber">84</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg502" approved="yes">
+        <source xml:space="preserve">Nm</source>
+        <target xml:space="preserve">Dm</target>
+        <context-group purpose="location"><context context-type="linenumber">85</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg503" approved="yes">
+        <source xml:space="preserve">Nautical miles</source>
+        <target xml:space="preserve">Deniz mili</target>
+        <context-group purpose="location"><context context-type="linenumber">85</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg504" approved="yes">
+        <source xml:space="preserve">Km</source>
+        <target xml:space="preserve">Km</target>
+        <context-group purpose="location"><context context-type="linenumber">86</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg505" approved="yes">
+        <source xml:space="preserve">Kilometers</source>
+        <target xml:space="preserve">Kilometre</target>
+        <context-group purpose="location"><context context-type="linenumber">86</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg506" approved="yes">
+        <source xml:space="preserve">MHz</source>
+        <target xml:space="preserve">MHz</target>
+        <context-group purpose="location"><context context-type="linenumber">88</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg507" approved="yes">
+        <source xml:space="preserve">kHz</source>
+        <target xml:space="preserve">kHz</target>
+        <context-group purpose="location"><context context-type="linenumber">89</context></context-group>
+      </trans-unit>
+    </group>
+  </body></file>
+  <file original="/home/devel/FGFS/flightgear/src/GUI/qml/CatalogRefreshFailedNotification.qml" datatype="plaintext" source-language="en" target-language="tr"><body>
+    <group restype="x-trolltech-linguist-context" resname="CatalogRefreshFailedNotification">
+      <trans-unit id="_msg508" approved="yes">
+        <source xml:space="preserve">The catalog at &apos;%1&apos; failed to download and validate correctly. All aircraft it provides will be unavailable.</source>
+        <target xml:space="preserve">&apos;%1&apos; adresindeki katalog düzgün yüklenemedi ve doğrulanamadı. Sağladığı tüm uçaklar kullanılamayacak.</target>
+        <context-group purpose="location"><context context-type="linenumber">9</context></context-group>
+      </trans-unit>
+    </group>
+  </body></file>
+</xliff>
diff --git a/Translations/tr/FlightGear-nonQt.xlf b/Translations/tr/FlightGear-nonQt.xlf
new file mode 100644
index 000000000..4048fba2b
--- /dev/null
+++ b/Translations/tr/FlightGear-nonQt.xlf
@@ -0,0 +1,1655 @@
+<?xml version="1.0" encoding="utf-8"?>
+<xliff version="1.2" xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:trolltech="urn:trolltech:names:ts:document:1.0">
+  <file original="" datatype="plaintext" source-language="en-US" target-language="tr"><body>
+    <group restype="x-trolltech-linguist-context" resname="menu">
+      <trans-unit id="menu/adjust-hud:0" approved="yes">
+        <source xml:space="preserve">Adjust HUD Properties</source>
+        <target xml:space="preserve">HUD Özelliklerini Ayarlayın</target>
+      </trans-unit>
+      <trans-unit id="menu/adjust-lod:0" approved="yes">
+        <source xml:space="preserve">Adjust LOD Ranges</source>
+        <target xml:space="preserve">LOD Aralıklarını Ayarla</target>
+      </trans-unit>
+      <trans-unit id="menu/ai:0" approved="yes">
+        <source xml:space="preserve">AI</source>
+        <target xml:space="preserve">Tüm</target>
+      </trans-unit>
+      <trans-unit id="menu/aircraft-center:0" approved="yes">
+        <source xml:space="preserve">Aircraft Center (Experimental)</source>
+        <target xml:space="preserve">Uçak Merkezi (Deneysel)</target>
+      </trans-unit>
+      <trans-unit id="menu/aircraft-checklists:0" approved="yes">
+        <source xml:space="preserve">Aircraft Checklists</source>
+        <target xml:space="preserve">Uçak Kontrol Listeleri</target>
+      </trans-unit>
+      <trans-unit id="menu/aircraft-keys:0" approved="yes">
+        <source xml:space="preserve">Aircraft Help</source>
+        <target xml:space="preserve">Uçak Yardımı</target>
+      </trans-unit>
+      <trans-unit id="menu/atc-in-range:0" approved="yes">
+        <source xml:space="preserve">ATC Services in Range</source>
+        <target xml:space="preserve">Aralıktaki ATC Hizmetleri</target>
+      </trans-unit>
+      <trans-unit id="menu/autopilot:0" approved="yes">
+        <source xml:space="preserve">Autopilot</source>
+        <target xml:space="preserve">Otomatik pilot</target>
+      </trans-unit>
+      <trans-unit id="menu/autopilot-settings:0" approved="yes">
+        <source xml:space="preserve">Autopilot Settings</source>
+        <target xml:space="preserve">Otomatik Pilot Ayarları</target>
+      </trans-unit>
+      <trans-unit id="menu/autostart:0" approved="yes">
+        <source xml:space="preserve">Autostart</source>
+        <target xml:space="preserve">Otomatik başlatma</target>
+      </trans-unit>
+      <trans-unit id="menu/basic-keys:0" approved="yes">
+        <source xml:space="preserve">Basic Simulator Keys</source>
+        <target xml:space="preserve">Temel Simülatör Tuşları</target>
+      </trans-unit>
+      <trans-unit id="menu/carrier:0" approved="yes">
+        <source xml:space="preserve">Carrier Controls</source>
+        <target xml:space="preserve">Taşıyıcı Kontrolleri</target>
+      </trans-unit>
+      <trans-unit id="menu/cockpit-view-options:0" approved="yes">
+        <source xml:space="preserve">Cockpit View Options</source>
+        <target xml:space="preserve">Kokpit Görünümü Seçenekleri</target>
+      </trans-unit>
+      <trans-unit id="menu/common-keys:0" approved="yes">
+        <source xml:space="preserve">Common Aircraft Keys</source>
+        <target xml:space="preserve">Ortak Uçak Anahtarları</target>
+      </trans-unit>
+      <trans-unit id="menu/configure-dev-extension:0" approved="yes">
+        <source xml:space="preserve">Configure Development Extensions</source>
+        <target xml:space="preserve">Geliştirme Uzantılarını Yapılandırma</target>
+      </trans-unit>
+      <trans-unit id="menu/cycle-gui:0" approved="yes">
+        <source xml:space="preserve">Cycle GUI Style</source>
+        <target xml:space="preserve">Döngü ARAYÜZ Stili</target>
+      </trans-unit>
+      <trans-unit id="menu/debug:0" approved="yes">
+        <source xml:space="preserve">Debug</source>
+        <target xml:space="preserve">Hata ayıklama</target>
+      </trans-unit>
+      <trans-unit id="menu/development-keys:0" approved="yes">
+        <source xml:space="preserve">Development Keys</source>
+        <target xml:space="preserve">Geliştirme Anahtarları</target>
+      </trans-unit>
+      <trans-unit id="menu/display-marker:0" approved="yes">
+        <source xml:space="preserve">Display Tutorial Marker</source>
+        <target xml:space="preserve">Eğitici İşaretçiyi Görüntüle</target>
+      </trans-unit>
+      <trans-unit id="menu/doc-browser:0" approved="yes">
+        <source xml:space="preserve">Documentation Browser</source>
+        <target xml:space="preserve">Belge Tarayıcı</target>
+      </trans-unit>
+      <trans-unit id="menu/dump-scene-graph:0" approved="yes">
+        <source xml:space="preserve">Dump Scene Graph</source>
+        <target xml:space="preserve">Döküm Sahne Grafiği</target>
+      </trans-unit>
+      <trans-unit id="menu/environment:0" approved="yes">
+        <source xml:space="preserve">Environment</source>
+        <target xml:space="preserve">Çevre</target>
+      </trans-unit>
+      <trans-unit id="menu/environment-settings:0" approved="yes">
+        <source xml:space="preserve">Environment Settings</source>
+        <target xml:space="preserve">Ortam Ayarları</target>
+      </trans-unit>
+      <trans-unit id="menu/equipment:0" approved="yes">
+        <source xml:space="preserve">Equipment</source>
+        <target xml:space="preserve">Teçhizat</target>
+      </trans-unit>
+      <trans-unit id="menu/exit:0" approved="yes">
+        <source xml:space="preserve">Quit</source>
+        <target xml:space="preserve">Çık</target>
+      </trans-unit>
+      <trans-unit id="menu/failure-submenu:0" approved="yes">
+        <source xml:space="preserve">--- Failures ---</source>
+        <target xml:space="preserve">--- Başarısızlıklar ---</target>
+      </trans-unit>
+      <trans-unit id="menu/fg1000-mfd:0" approved="yes">
+        <source xml:space="preserve">FG1000 MFD</source>
+        <target xml:space="preserve">FG1000 MFD</target>
+      </trans-unit>
+      <trans-unit id="menu/fg1000-pfd:0" approved="yes">
+        <source xml:space="preserve">FG1000 PFD</source>
+        <target xml:space="preserve">FG1000 PFD</target>
+      </trans-unit>
+      <trans-unit id="menu/fgcom-settings:0" approved="yes">
+        <source xml:space="preserve">FGCom Settings</source>
+        <target xml:space="preserve">FGCom Ayarları</target>
+      </trans-unit>
+      <trans-unit id="menu/file:0" approved="yes">
+        <source xml:space="preserve">File</source>
+        <target xml:space="preserve">Dosya</target>
+      </trans-unit>
+      <trans-unit id="menu/fuel-and-payload:0" approved="yes">
+        <source xml:space="preserve">Fuel and Payload</source>
+        <target xml:space="preserve">Yakıt ve Yük</target>
+      </trans-unit>
+      <trans-unit id="menu/global-weather:0" approved="yes">
+        <source xml:space="preserve">Weather</source>
+        <target xml:space="preserve">Hava durumu</target>
+      </trans-unit>
+      <trans-unit id="menu/goto-airport:0" approved="yes">
+        <source xml:space="preserve">Select Airport</source>
+        <target xml:space="preserve">Havalimanı Seçin</target>
+      </trans-unit>
+      <trans-unit id="menu/gps:0" approved="yes">
+        <source xml:space="preserve">GPS Settings</source>
+        <target xml:space="preserve">GPS Ayarları</target>
+      </trans-unit>
+      <trans-unit id="menu/help:0" approved="yes">
+        <source xml:space="preserve">Help</source>
+        <target xml:space="preserve">Yardım</target>
+      </trans-unit>
+      <trans-unit id="menu/help-browser:0" approved="yes">
+        <source xml:space="preserve">Help (opens in browser)</source>
+        <target xml:space="preserve">Yardım (tarayıcıda açılır)</target>
+      </trans-unit>
+      <trans-unit id="menu/immatriculation:0" approved="yes">
+        <source xml:space="preserve">Immatriculation</source>
+        <target xml:space="preserve">Kayıt</target>
+      </trans-unit>
+      <trans-unit id="menu/input-config:0" approved="yes">
+        <source xml:space="preserve">Mouse Configuration</source>
+        <target xml:space="preserve">Fare Yapılandırması</target>
+      </trans-unit>
+      <trans-unit id="menu/instrument-failures:0" approved="yes">
+        <source xml:space="preserve">Instrument Failures</source>
+        <target xml:space="preserve">Cihaz Arızaları</target>
+      </trans-unit>
+      <trans-unit id="menu/instrument-settings:0" approved="yes">
+        <source xml:space="preserve">Instrument Settings</source>
+        <target xml:space="preserve">Cihaz Ayarları</target>
+      </trans-unit>
+      <trans-unit id="menu/interface-config:0" approved="yes">
+        <source xml:space="preserve">User-interface Options</source>
+        <target xml:space="preserve">Kullanıcı Arayüzü Seçenekleri</target>
+      </trans-unit>
+      <trans-unit id="menu/jetway:0" approved="yes">
+        <source xml:space="preserve">Jetway Settings</source>
+        <target xml:space="preserve">Jet yolu Ayarları</target>
+      </trans-unit>
+      <trans-unit id="menu/joystick-config:0" approved="yes">
+        <source xml:space="preserve">Joystick Configuration</source>
+        <target xml:space="preserve">Joystick Yapılandırması</target>
+      </trans-unit>
+      <trans-unit id="menu/joystick-info:0" approved="yes">
+        <source xml:space="preserve">Joystick Information</source>
+        <target xml:space="preserve">Joystick Bilgileri</target>
+      </trans-unit>
+      <trans-unit id="menu/lag-adjust:0" approved="yes">
+        <source xml:space="preserve">Lag Settings</source>
+        <target xml:space="preserve">Gecikme Ayarları</target>
+      </trans-unit>
+      <trans-unit id="menu/load-tape:0" approved="yes">
+        <source xml:space="preserve">Load Flight Recorder Tape</source>
+        <target xml:space="preserve">Uçuş Kaydedici Bandını Yükle</target>
+      </trans-unit>
+      <trans-unit id="menu/local_weather:0" approved="yes">
+        <source xml:space="preserve">Local Weather (Test)</source>
+        <target xml:space="preserve">Yerel Hava Durumu (Test)</target>
+      </trans-unit>
+      <trans-unit id="menu/location:0" approved="yes">
+        <source xml:space="preserve">Location</source>
+        <target xml:space="preserve">Konum</target>
+      </trans-unit>
+      <trans-unit id="menu/logging:0" approved="yes">
+        <source xml:space="preserve">Logging</source>
+        <target xml:space="preserve">Günlük</target>
+      </trans-unit>
+      <trans-unit id="menu/map:0" approved="yes">
+        <source xml:space="preserve">Map</source>
+        <target xml:space="preserve">Harita</target>
+      </trans-unit>
+      <trans-unit id="menu/map-browser:0" approved="yes">
+        <source xml:space="preserve">Map (opens in browser)</source>
+        <target xml:space="preserve">Harita (tarayıcıda açılır)</target>
+      </trans-unit>
+      <trans-unit id="menu/map-canvas:0" approved="yes">
+        <source xml:space="preserve">Map (Canvas)</source>
+        <target xml:space="preserve">Harita (Tuval)</target>
+      </trans-unit>
+      <trans-unit id="menu/menu-about:0" approved="yes">
+        <source xml:space="preserve">About</source>
+        <target xml:space="preserve">Hakkında</target>
+      </trans-unit>
+      <trans-unit id="menu/mp-carrier:0" approved="yes">
+        <source xml:space="preserve">MPCarrier Selection</source>
+        <target xml:space="preserve">MP Taşıyıcı Seçimi</target>
+      </trans-unit>
+      <trans-unit id="menu/mp-chat:0" approved="yes">
+        <source xml:space="preserve">Chat Dialog</source>
+        <target xml:space="preserve">Sohbet İletişim Kutusu</target>
+      </trans-unit>
+      <trans-unit id="menu/mp-chat-menu:0" approved="yes">
+        <source xml:space="preserve">Chat Menu</source>
+        <target xml:space="preserve">Sohbet Menüsü</target>
+      </trans-unit>
+      <trans-unit id="menu/mp-list:0" approved="yes">
+        <source xml:space="preserve">Pilot List</source>
+        <target xml:space="preserve">Pilot Listesi</target>
+      </trans-unit>
+      <trans-unit id="menu/mp-settings:0" approved="yes">
+        <source xml:space="preserve">Multiplayer Settings</source>
+        <target xml:space="preserve">Çok Oyunculu Ayarlar</target>
+      </trans-unit>
+      <trans-unit id="menu/multiplayer:0" approved="yes">
+        <source xml:space="preserve">Multiplayer</source>
+        <target xml:space="preserve">Çok oyunculu</target>
+      </trans-unit>
+      <trans-unit id="menu/nasal-console:0" approved="yes">
+        <source xml:space="preserve">Nasal Console</source>
+        <target xml:space="preserve">Burun Konsolu</target>
+      </trans-unit>
+      <trans-unit id="menu/nasal-repl-interpreter:0" approved="yes">
+        <source xml:space="preserve">Nasal REPL Interpreter</source>
+        <target xml:space="preserve">Burun REPL Tercümanı</target>
+      </trans-unit>
+      <trans-unit id="menu/next-waypoint:0" approved="yes">
+        <source xml:space="preserve">Next Waypoint</source>
+        <target xml:space="preserve">Sonraki Ara Nokta</target>
+      </trans-unit>
+      <trans-unit id="menu/performance-monitor:0" approved="yes">
+        <source xml:space="preserve">Monitor System Performance</source>
+        <target xml:space="preserve">Sistem Performansını İzleyin</target>
+      </trans-unit>
+      <trans-unit id="menu/pilot-offset:0" approved="yes">
+        <source xml:space="preserve">Adjust View Position</source>
+        <target xml:space="preserve">Görünüm Konumunu Ayarla</target>
+      </trans-unit>
+      <trans-unit id="menu/position-in-air:0" approved="yes">
+        <source xml:space="preserve">Position Aircraft In Air</source>
+        <target xml:space="preserve">Uçağı Havada Konumlandır</target>
+      </trans-unit>
+      <trans-unit id="menu/previous-waypoint:0" approved="yes">
+        <source xml:space="preserve">Previous Waypoint</source>
+        <target xml:space="preserve">Önceki Ara Nokta</target>
+      </trans-unit>
+      <trans-unit id="menu/print-rendering-statistics:0" approved="yes">
+        <source xml:space="preserve">Print Rendering Statistics</source>
+        <target xml:space="preserve">Baskı Oluşturma İstatistikleri</target>
+      </trans-unit>
+      <trans-unit id="menu/print-scene-info:0" approved="yes">
+        <source xml:space="preserve">Print Visible Scene Info</source>
+        <target xml:space="preserve">Görünür Sahne Bilgilerini Yazdır</target>
+      </trans-unit>
+      <trans-unit id="menu/property-browser:0" approved="yes">
+        <source xml:space="preserve">Browse Internal Properties</source>
+        <target xml:space="preserve">Dahili Özelliklere Göz Atma</target>
+      </trans-unit>
+      <trans-unit id="menu/pushback:0" approved="yes">
+        <source xml:space="preserve">Pushback</source>
+        <target xml:space="preserve">Geri itme</target>
+      </trans-unit>
+      <trans-unit id="menu/radio:0" approved="yes">
+        <source xml:space="preserve">Radio Settings</source>
+        <target xml:space="preserve">Radyo Ayarları</target>
+      </trans-unit>
+      <trans-unit id="menu/random-attitude:0" approved="yes">
+        <source xml:space="preserve">Random Attitude</source>
+        <target xml:space="preserve">Rastgele Tutum</target>
+      </trans-unit>
+      <trans-unit id="menu/random-failures:0" approved="yes">
+        <source xml:space="preserve">Random Failures</source>
+        <target xml:space="preserve">Rastgele Başarısızlıklar</target>
+      </trans-unit>
+      <trans-unit id="menu/reload-autopilot:0" approved="yes">
+        <source xml:space="preserve">Reload Autopilot</source>
+        <target xml:space="preserve">Otomatik Pilotu Yeniden Yükle</target>
+      </trans-unit>
+      <trans-unit id="menu/reload-gui:0" approved="yes">
+        <source xml:space="preserve">Reload GUI</source>
+        <target xml:space="preserve">ARAYÜZÜ Yeniden yükle</target>
+      </trans-unit>
+      <trans-unit id="menu/reload-hud:0" approved="yes">
+        <source xml:space="preserve">Reload HUD</source>
+        <target xml:space="preserve">HUD&apos;i yeniden yükle</target>
+      </trans-unit>
+      <trans-unit id="menu/reload-input:0" approved="yes">
+        <source xml:space="preserve">Reload Input</source>
+        <target xml:space="preserve">Girişi Yeniden Yükle</target>
+      </trans-unit>
+      <trans-unit id="menu/reload-materials:0" approved="yes">
+        <source xml:space="preserve">Reload Materials</source>
+        <target xml:space="preserve">Malzemeleri Yeniden Yükle</target>
+      </trans-unit>
+      <trans-unit id="menu/reload-model:0" approved="yes">
+        <source xml:space="preserve">Reload Aircraft Model</source>
+        <target xml:space="preserve">Uçak Modelini Yeniden Yükle</target>
+      </trans-unit>
+      <trans-unit id="menu/reload-network:0" approved="yes">
+        <source xml:space="preserve">Reload Network</source>
+        <target xml:space="preserve">Ağı Yeniden Yükle</target>
+      </trans-unit>
+      <trans-unit id="menu/reload-panel:0" approved="yes">
+        <source xml:space="preserve">Reload Panel</source>
+        <target xml:space="preserve">Paneli Yeniden Yükle</target>
+      </trans-unit>
+      <trans-unit id="menu/reload-scenery:0" approved="yes">
+        <source xml:space="preserve">Reload Scenery</source>
+        <target xml:space="preserve">Manzarayı Yeniden Yükle</target>
+      </trans-unit>
+      <trans-unit id="menu/rembrandt-buffers-choice:0" approved="yes">
+        <source xml:space="preserve">Select Rendering Buffers</source>
+        <target xml:space="preserve">İşleme Arabelleğini Seçin</target>
+      </trans-unit>
+      <trans-unit id="menu/rendering-buffers:0" approved="yes">
+        <source xml:space="preserve">Hide/Show Rendering Buffers</source>
+        <target xml:space="preserve">İşleme Arabelleğini Gizle/Göster</target>
+      </trans-unit>
+      <trans-unit id="menu/rendering-options:0" approved="yes">
+        <source xml:space="preserve">Rendering Options</source>
+        <target xml:space="preserve">İşleme Seçenekleri</target>
+      </trans-unit>
+      <trans-unit id="menu/replay:0" approved="yes">
+        <source xml:space="preserve">Instant Replay</source>
+        <target xml:space="preserve">Anında Tekrar Oynatma</target>
+      </trans-unit>
+      <trans-unit id="menu/reset:0" approved="yes">
+        <source xml:space="preserve">Reset</source>
+        <target xml:space="preserve">Sıfırla</target>
+      </trans-unit>
+      <trans-unit id="menu/route-manager:0" approved="yes">
+        <source xml:space="preserve">Route Manager</source>
+        <target xml:space="preserve">Rota Yöneticisi</target>
+      </trans-unit>
+      <trans-unit id="menu/save-tape:0" approved="yes">
+        <source xml:space="preserve">Save Flight Recorder Tape</source>
+        <target xml:space="preserve">Uçuş Kaydedici Bandını Kaydet</target>
+      </trans-unit>
+      <trans-unit id="menu/scenario:0" approved="yes">
+        <source xml:space="preserve">Traffic and Scenario Settings</source>
+        <target xml:space="preserve">Trafik ve Senaryo Ayarları</target>
+      </trans-unit>
+      <trans-unit id="menu/select-livery:0" approved="yes">
+        <source xml:space="preserve">Select Livery</source>
+        <target xml:space="preserve">Tasarım Seç</target>
+      </trans-unit>
+      <trans-unit id="menu/show-hide-yokes:0" approved="yes">
+        <source xml:space="preserve">Show/hide yokes</source>
+        <target xml:space="preserve">Boyundurukları göster/gizle</target>
+      </trans-unit>
+      <trans-unit id="menu/snap-shot:0" approved="yes">
+        <source xml:space="preserve">Screenshot</source>
+        <target xml:space="preserve">Ekran görüntüsü</target>
+      </trans-unit>
+      <trans-unit id="menu/snap-shot-dir:0" approved="yes">
+        <source xml:space="preserve">Screenshot Directory</source>
+        <target xml:space="preserve">Ekran Görüntüsü Dizini</target>
+      </trans-unit>
+      <trans-unit id="menu/sound-config:0" approved="yes">
+        <source xml:space="preserve">Sound Configuration</source>
+        <target xml:space="preserve">Ses Yapılandırması</target>
+      </trans-unit>
+      <trans-unit id="menu/statistics-display:0" approved="yes">
+        <source xml:space="preserve">Cycle On-Screen Statistics</source>
+        <target xml:space="preserve">Ekran İstatistikleri Döngü</target>
+      </trans-unit>
+      <trans-unit id="menu/stereoscopic-options:0" approved="yes">
+        <source xml:space="preserve">Stereoscopic View Options</source>
+        <target xml:space="preserve">Stereoskopik Görünüm Seçenekleri</target>
+      </trans-unit>
+      <trans-unit id="menu/stopwatch:0" approved="yes">
+        <source xml:space="preserve">Stopwatch</source>
+        <target xml:space="preserve">Kronometre</target>
+      </trans-unit>
+      <trans-unit id="menu/swift_connection:0" approved="yes">
+        <source xml:space="preserve">swift Connection</source>
+        <target xml:space="preserve">hızlı Bağlantı</target>
+      </trans-unit>
+      <trans-unit id="menu/system-failures:0" approved="yes">
+        <source xml:space="preserve">System Failures</source>
+        <target xml:space="preserve">Sistem Arızaları</target>
+      </trans-unit>
+      <trans-unit id="menu/tanker:0" approved="yes">
+        <source xml:space="preserve">Tanker Controls</source>
+        <target xml:space="preserve">Tanker Kontrolleri</target>
+      </trans-unit>
+      <trans-unit id="menu/terrasync:0" approved="yes">
+        <source xml:space="preserve">Scenery Download</source>
+        <target xml:space="preserve">Manzara İndir</target>
+      </trans-unit>
+      <trans-unit id="menu/tiller-steering:0" approved="yes">
+        <source xml:space="preserve">Tiller Steering</source>
+        <target xml:space="preserve">Yeke Direksiyon</target>
+      </trans-unit>
+      <trans-unit id="menu/time-settings:0" approved="yes">
+        <source xml:space="preserve">Time Settings</source>
+        <target xml:space="preserve">Zaman Ayarları</target>
+      </trans-unit>
+      <trans-unit id="menu/toggle-fullscreen:0" approved="yes">
+        <source xml:space="preserve">Toggle Fullscreen</source>
+        <target xml:space="preserve">Tam ekrana Geç</target>
+      </trans-unit>
+      <trans-unit id="menu/toggle-glide-slope:0" approved="yes">
+        <source xml:space="preserve">Toggle Glide Slope Tunnel</source>
+        <target xml:space="preserve">Kayma Eğimi Tünelini Değiştir</target>
+      </trans-unit>
+      <trans-unit id="menu/tower-position:0" approved="yes">
+        <source xml:space="preserve">Tower Position</source>
+        <target xml:space="preserve">Kule Konumu</target>
+      </trans-unit>
+      <trans-unit id="menu/tutorial-start:0" approved="yes">
+        <source xml:space="preserve">Tutorials</source>
+        <target xml:space="preserve">Öğreticiler</target>
+      </trans-unit>
+      <trans-unit id="menu/view:0" approved="yes">
+        <source xml:space="preserve">View</source>
+        <target xml:space="preserve">Görünüm</target>
+      </trans-unit>
+      <trans-unit id="menu/view-options:0" approved="yes">
+        <source xml:space="preserve">View Options</source>
+        <target xml:space="preserve">Görünüm Seçenekleri</target>
+      </trans-unit>
+      <trans-unit id="menu/wildfire-settings:0" approved="yes">
+        <source xml:space="preserve">Wildfire Settings</source>
+        <target xml:space="preserve">Orman Yangını Ayarları</target>
+      </trans-unit>
+      <trans-unit id="menu/wingman:0" approved="yes">
+        <source xml:space="preserve">Wingman Controls</source>
+        <target xml:space="preserve">Kanat Adamı Kontrolleri</target>
+      </trans-unit>
+      <trans-unit id="menu/write-video-config:0" approved="yes">
+        <source xml:space="preserve">Save Video Configuration</source>
+        <target xml:space="preserve">Video Yapılandırmasını Kaydet</target>
+      </trans-unit>
+    </group>
+    <group restype="x-trolltech-linguist-context" resname="options">
+      <trans-unit id="options/AV400-desc:0" approved="yes">
+        <source xml:space="preserve">Emit the Garmin AV400 protocol required to drive a Garmin 196/296 series GPS</source>
+        <target xml:space="preserve">Garmin 196/296 serisi GPS&apos;i sürmek için gereken Garmin AV400 protokolünü yayınlayın</target>
+      </trans-unit>
+      <trans-unit id="options/AV400Sim-desc:0" approved="yes">
+        <source xml:space="preserve">Emit the set of AV400 strings required to drive a Garmin 400-series GPS from FlightGear</source>
+        <target xml:space="preserve">Garmin 400 serisi bir GPS&apos;i Flightgear&apos;da sürmek için gereken AV400 dizelerini yayınlayın</target>
+      </trans-unit>
+      <trans-unit id="options/adf1-desc:0" approved="yes">
+        <source xml:space="preserve">Set the ADF1 radio frequency, optionally preceded by a card rotation.</source>
+        <target xml:space="preserve">ADF1 radyo frekansını, isteğe bağlı olarak bir kart dönüşünden önce ayarlayın.</target>
+      </trans-unit>
+      <trans-unit id="options/adf2-desc:0" approved="yes">
+        <source xml:space="preserve">Set the ADF2 radio frequency, optionally preceded by a card rotation.</source>
+        <target xml:space="preserve">ADF2 radyo frekansını, isteğe bağlı olarak bir kart dönüşünden önce ayarlayın.</target>
+      </trans-unit>
+      <trans-unit id="options/aero-desc:0" approved="yes">
+        <source xml:space="preserve">Select aircraft aerodynamics model to load</source>
+        <target xml:space="preserve">Yüklenecek uçak aerodinamik modelini seçin</target>
+      </trans-unit>
+      <trans-unit id="options/ai-scenario:0" approved="yes">
+        <source xml:space="preserve">Add and enable a new scenario. Multiple options are allowed.</source>
+        <target xml:space="preserve">Yeni bir senaryo ekleyin ve etkinleştirin. Birden fazla seçeneğe izin verilir.</target>
+      </trans-unit>
+      <trans-unit id="options/aircraft-desc:0" approved="yes">
+        <source xml:space="preserve">Select an aircraft profile as defined by a top level &lt;name&gt;-set.xml</source>
+        <target xml:space="preserve">Üst düzey &lt;name&gt;-set.xml tarafından tanımlandığı gibi bir uçak profili seçin</target>
+      </trans-unit>
+      <trans-unit id="options/aircraft-dir-desc:0" approved="yes">
+        <source xml:space="preserve">Specify the exact directory to use for the aircraft (normally not required, but may be useful). Interpreted relatively to the current directory. Causes the &lt;path-cache&gt; from autosave_X_Y.xml, as well as --fg-aircraft and the FG_AIRCRAFT environment variable to be bypassed.</source>
+        <target xml:space="preserve">Hava aracı için kullanılacak tam dizini belirtin (normalde gerekli değildir, ancak yararlı olabilir). Geçerli dizine göre yorumlanır. autosave_X_Y.xml&apos;deki &lt;path-cache&gt; öğesinin yanı sıra --fg-aircraft ve FG_AIRCRAFT ortam değişkeninin atlanmasına neden olur.</target>
+      </trans-unit>
+      <trans-unit id="options/aircraft-model-options:0" approved="yes">
+        <source xml:space="preserve">Aircraft model directory (UIUC FDM ONLY)</source>
+        <target xml:space="preserve">Uçak modeli dizini (YALNIZCA UIUC FDM)</target>
+      </trans-unit>
+      <trans-unit id="options/aircraft-options:0" approved="yes">
+        <source xml:space="preserve">Aircraft</source>
+        <target xml:space="preserve">Uçak</target>
+      </trans-unit>
+      <trans-unit id="options/airport-desc:0" approved="yes">
+        <source xml:space="preserve">Specify starting position relative to an airport</source>
+        <target xml:space="preserve">Bir havaalanına göre başlangıç konumunu belirtin</target>
+      </trans-unit>
+      <trans-unit id="options/altitude-desc:0" approved="yes">
+        <source xml:space="preserve">Starting altitude</source>
+        <target xml:space="preserve">Başlangıç irtifası</target>
+      </trans-unit>
+      <trans-unit id="options/arm-desc:0" approved="yes">
+        <source xml:space="preserve">Specify a multiplier for the aspect ratio.</source>
+        <target xml:space="preserve">En boy oranı için bir çarpan belirtin.</target>
+      </trans-unit>
+      <trans-unit id="options/atcsim-desc:0" approved="yes">
+        <source xml:space="preserve">Open connection using the ATC sim protocol (atc610x)</source>
+        <target xml:space="preserve">ATC sim protokolünü (atc610x) kullanarak bağlantıyı açın</target>
+      </trans-unit>
+      <trans-unit id="options/atlas-desc:0" approved="yes">
+        <source xml:space="preserve">Open connection using the Atlas protocol</source>
+        <target xml:space="preserve">Atlas protokolünü kullanarak bağlantıyı açın</target>
+      </trans-unit>
+      <trans-unit id="options/audio-options:0" approved="yes">
+        <source xml:space="preserve">Audio Options</source>
+        <target xml:space="preserve">Ses Seçenekleri</target>
+      </trans-unit>
+      <trans-unit id="options/avionics-options:0" approved="yes">
+        <source xml:space="preserve">Avionics Options</source>
+        <target xml:space="preserve">Elektronik Seçenekleri</target>
+      </trans-unit>
+      <trans-unit id="options/bpp-desc:0" approved="yes">
+        <source xml:space="preserve">Specify the bits per pixel</source>
+        <target xml:space="preserve">Piksel başına bitleri belirtin</target>
+      </trans-unit>
+      <trans-unit id="options/browser-app-desc:0" approved="yes">
+        <source xml:space="preserve">Specify path to your web browser</source>
+        <target xml:space="preserve">Web tarayıcınızın yolunu belirtin</target>
+      </trans-unit>
+      <trans-unit id="options/callsign-desc:0" approved="yes">
+        <source xml:space="preserve">assign a unique name to a player</source>
+        <target xml:space="preserve">bir oyuncuya benzersiz bir ad atayın</target>
+      </trans-unit>
+      <trans-unit id="options/carrier-abeam-desc:0" approved="yes">
+        <source xml:space="preserve">Start on downwind abeam the selected carrier (must also specify a carrier)</source>
+        <target xml:space="preserve">Seçilen taşıyıcıya doğru rüzgar yönünde başlayın (ayrıca bir taşıyıcı belirtmelidir)</target>
+      </trans-unit>
+      <trans-unit id="options/carrier-desc:0" approved="yes">
+        <source xml:space="preserve">Specify starting position on an AI carrier</source>
+        <target xml:space="preserve">Bir AI taşıyıcısında başlangıç pozisyonunu belirtin</target>
+      </trans-unit>
+      <trans-unit id="options/ceiling-desc:0" approved="yes">
+        <source xml:space="preserve">Create an overcast ceiling, optionally with a specific thickness (defaults to 2000 ft).</source>
+        <target xml:space="preserve">İsteğe bağlı olarak belirli bir kalınlığa sahip bir bulutlu tavan oluşturun (varsayılanı 2000 fit&apos;dir).</target>
+      </trans-unit>
+      <trans-unit id="options/com1-desc:0" approved="yes">
+        <source xml:space="preserve">Set the COM1 radio frequency</source>
+        <target xml:space="preserve">COM1 radyo frekansını ayarlayın</target>
+      </trans-unit>
+      <trans-unit id="options/com2-desc:0" approved="yes">
+        <source xml:space="preserve">Set the COM2 radio frequency</source>
+        <target xml:space="preserve">COM2 radyo frekansını ayarlayın</target>
+      </trans-unit>
+      <trans-unit id="options/config-desc:0" approved="yes">
+        <source xml:space="preserve">Load additional properties from path</source>
+        <target xml:space="preserve">Yoldan ek özellikler yükle</target>
+      </trans-unit>
+      <trans-unit id="options/console-desc:0" approved="yes">
+        <source xml:space="preserve">Display console (Windows specific)</source>
+        <target xml:space="preserve">Ekran konsolu (Windows&apos;a özel)</target>
+      </trans-unit>
+      <trans-unit id="options/debugging-options:0" approved="yes">
+        <source xml:space="preserve">Debugging Options</source>
+        <target xml:space="preserve">Hata Ayıklama Seçenekleri</target>
+      </trans-unit>
+      <trans-unit id="options/disable-ai-models-desc:0" approved="yes">
+        <source xml:space="preserve">Deprecated option (disable internal AI subsystem)</source>
+        <target xml:space="preserve">Kullanımdan kaldırılan seçenek (dahili AI alt sistemini devre dışı bırakın)</target>
+      </trans-unit>
+      <trans-unit id="options/disable-ai-traffic-desc:0" approved="yes">
+        <source xml:space="preserve">Disable artificial traffic.</source>
+        <target xml:space="preserve">Yapay trafiği devre dışı bırakın.</target>
+      </trans-unit>
+      <trans-unit id="options/disable-anti-alias-hud-desc:0" approved="yes">
+        <source xml:space="preserve">Disable anti-aliased HUD</source>
+        <target xml:space="preserve">Kenar yumuşatma HUD&apos;sini devre dışı bırak</target>
+      </trans-unit>
+      <trans-unit id="options/disable-auto-coordination-desc:0" approved="yes">
+        <source xml:space="preserve">Disable auto coordination</source>
+        <target xml:space="preserve">Otomatik koordinasyonu devre dışı bırak</target>
+      </trans-unit>
+      <trans-unit id="options/disable-clock-freeze-desc:0" approved="yes">
+        <source xml:space="preserve">Clock advances normally</source>
+        <target xml:space="preserve">Saat normal ilerler</target>
+      </trans-unit>
+      <trans-unit id="options/disable-clouds-desc:0" approved="yes">
+        <source xml:space="preserve">Disable 2D (flat) cloud layers</source>
+        <target xml:space="preserve">2B (düz) bulut katmanlarını devre dışı bırak</target>
+      </trans-unit>
+      <trans-unit id="options/disable-clouds3d-desc:0" approved="yes">
+        <source xml:space="preserve">Disable 3D (volumetric) cloud layers</source>
+        <target xml:space="preserve">3B (hacimsel) bulut katmanlarını devre dışı bırakın</target>
+      </trans-unit>
+      <trans-unit id="options/disable-distance-attenuation:0" approved="yes">
+        <source xml:space="preserve">Disable runway light distance attenuation</source>
+        <target xml:space="preserve">Pist ışık mesafesi zayıflamasını devre dışı bırak</target>
+      </trans-unit>
+      <trans-unit id="options/disable-enhanced-lighting:0" approved="yes">
+        <source xml:space="preserve">Disable enhanced runway lighting</source>
+        <target xml:space="preserve">Gelişmiş pist aydınlatmasını devre dışı bırakın</target>
+      </trans-unit>
+      <trans-unit id="options/disable-fgcom-desc:0" approved="yes">
+        <source xml:space="preserve">Disable FGCom built-in</source>
+        <target xml:space="preserve">Yerleşik FGCom&apos;u devre dışı bırak</target>
+      </trans-unit>
+      <trans-unit id="options/disable-freeze-desc:0" approved="yes">
+        <source xml:space="preserve">Start in a running state</source>
+        <target xml:space="preserve">Çalışan bir durumda başlayın</target>
+      </trans-unit>
+      <trans-unit id="options/disable-fuel-freeze-desc:0" approved="yes">
+        <source xml:space="preserve">Fuel is consumed normally</source>
+        <target xml:space="preserve">Yakıt normal olarak tüketilir</target>
+      </trans-unit>
+      <trans-unit id="options/disable-fullscreen-desc:0" approved="yes">
+        <source xml:space="preserve">Disable fullscreen mode</source>
+        <target xml:space="preserve">Tam ekran modunu devre dışı bırak</target>
+      </trans-unit>
+      <trans-unit id="options/disable-horizon-effect:0" approved="yes">
+        <source xml:space="preserve">Disable celestial body growth illusion near the horizon</source>
+        <target xml:space="preserve">Ufka yakın gök cismi büyüme yanılsamasını devre dışı bırak</target>
+      </trans-unit>
+      <trans-unit id="options/disable-hud-3d-desc:0" approved="yes">
+        <source xml:space="preserve">Disable 3D HUD</source>
+        <target xml:space="preserve">3B HUD&apos;yi devre dışı bırak</target>
+      </trans-unit>
+      <trans-unit id="options/disable-hud-desc:0" approved="yes">
+        <source xml:space="preserve">Disable Heads Up Display (HUD)</source>
+        <target xml:space="preserve">Baş Üstü Göstergesini (HUD) Devre Dışı Bırak</target>
+      </trans-unit>
+      <trans-unit id="options/disable-mouse-pointer-desc:0" approved="yes">
+        <source xml:space="preserve">Disable extra mouse pointer</source>
+        <target xml:space="preserve">Fazladan fare işaretçisini devre dışı bırak</target>
+      </trans-unit>
+      <trans-unit id="options/disable-panel-desc:0" approved="yes">
+        <source xml:space="preserve">Disable instrument panel</source>
+        <target xml:space="preserve">Gösterge panelini devre dışı bırak</target>
+      </trans-unit>
+      <trans-unit id="options/disable-random-buildings-desc:0" approved="yes">
+        <source xml:space="preserve">Exclude random buildings objects</source>
+        <target xml:space="preserve">Rastgele bina nesnelerini hariç tut</target>
+      </trans-unit>
+      <trans-unit id="options/disable-random-objects-desc:0" approved="yes">
+        <source xml:space="preserve">Exclude random scenery objects</source>
+        <target xml:space="preserve">Rastgele manzara nesnelerini hariç tut</target>
+      </trans-unit>
+      <trans-unit id="options/disable-random-vegetation-desc:0" approved="yes">
+        <source xml:space="preserve">Exclude random vegetation objects</source>
+        <target xml:space="preserve">Rastgele bitki örtüsü nesnelerini hariç tut</target>
+      </trans-unit>
+      <trans-unit id="options/disable-real-weather-fetch-desc:0" approved="yes">
+        <source xml:space="preserve">Disable METAR based real weather fetching</source>
+        <target xml:space="preserve">METAR tabanlı gerçek hava durumu alımını devre dışı bırak</target>
+      </trans-unit>
+      <trans-unit id="options/disable-rembrandt-desc:0" approved="yes">
+        <source xml:space="preserve">Disable Rembrandt rendering</source>
+        <target xml:space="preserve">Rembrandt oluşturmayı devre dışı bırak</target>
+      </trans-unit>
+      <trans-unit id="options/disable-save-on-exit:0" approved="yes">
+        <source xml:space="preserve">Don&apos;t save preferences upon program exit</source>
+        <target xml:space="preserve">Program çıkışında tercihleri kaydetme</target>
+      </trans-unit>
+      <trans-unit id="options/disable-sound-desc:0" approved="yes">
+        <source xml:space="preserve">Disable sound effects</source>
+        <target xml:space="preserve">Ses efektlerini devre dışı bırak</target>
+      </trans-unit>
+      <trans-unit id="options/disable-specular-highlight:0" approved="yes">
+        <source xml:space="preserve">Disable specular reflections on textured objects</source>
+        <target xml:space="preserve">Dokulu nesnelerde aynasal yansımaları devre dışı bırakın</target>
+      </trans-unit>
+      <trans-unit id="options/disable-splash-screen-desc:0" approved="yes">
+        <source xml:space="preserve">Disable splash screen</source>
+        <target xml:space="preserve">Açılış ekranını devre dışı bırak</target>
+      </trans-unit>
+      <trans-unit id="options/disable-terrasync-desc:0" approved="yes">
+        <source xml:space="preserve">Disable automatic scenery downloads/updates</source>
+        <target xml:space="preserve">Otomatik manzara indirmelerini/güncellemelerini devre dışı bırak</target>
+      </trans-unit>
+      <trans-unit id="options/disable-textures-desc:0" approved="yes">
+        <source xml:space="preserve">Disable textures</source>
+        <target xml:space="preserve">Dokuları devre dışı bırak</target>
+      </trans-unit>
+      <trans-unit id="options/disable-wireframe-desc:0" approved="yes">
+        <source xml:space="preserve">Disable wireframe drawing mode</source>
+        <target xml:space="preserve">Tel kafes çizim modunu devre dışı bırak</target>
+      </trans-unit>
+      <trans-unit id="options/dme-desc:0" approved="yes">
+        <source xml:space="preserve">Slave the DME to one of the NAV radios, or set its internal frequency.</source>
+        <target xml:space="preserve">DME&apos;yi NAV telsizlerinden birine bağımlı hale getirin veya dahili frekansını ayarlayın.</target>
+      </trans-unit>
+      <trans-unit id="options/download-dir-desc:0" approved="yes">
+        <source xml:space="preserve">Base directory to use for aircraft and scenery downloads (the TerraSync scenery directory may be specifically set with --terrasync-dir)</source>
+        <target xml:space="preserve">Uçak ve manzara indirmeleri için kullanılacak temel dizin (TerraSync manzara dizini özellikle --terrasync-dir ile ayarlanabilir)</target>
+      </trans-unit>
+      <trans-unit id="options/enable-ai-models-desc:0" approved="yes">
+        <source xml:space="preserve">Enable AI subsystem (required for multi-player, AI traffic and many other animations)</source>
+        <target xml:space="preserve">AI alt sistemini etkinleştir (çok oyunculu, AI trafiği ve diğer birçok animasyon için gereklidir)</target>
+      </trans-unit>
+      <trans-unit id="options/enable-ai-traffic-desc:0" approved="yes">
+        <source xml:space="preserve">Enable artificial traffic.</source>
+        <target xml:space="preserve">Yapay trafiği etkinleştirin.</target>
+      </trans-unit>
+      <trans-unit id="options/enable-anti-alias-hud-desc:0" approved="yes">
+        <source xml:space="preserve">Enable anti-aliased HUD</source>
+        <target xml:space="preserve">Kenar yumuşatılmış HUD&apos;yi etkinleştir</target>
+      </trans-unit>
+      <trans-unit id="options/enable-auto-coordination-desc:0" approved="yes">
+        <source xml:space="preserve">Enable auto coordination</source>
+        <target xml:space="preserve">Otomatik koordinasyonu etkinleştir</target>
+      </trans-unit>
+      <trans-unit id="options/enable-clock-freeze-desc:0" approved="yes">
+        <source xml:space="preserve">Do not advance clock</source>
+        <target xml:space="preserve">Saati ilerletme</target>
+      </trans-unit>
+      <trans-unit id="options/enable-clouds-desc:0" approved="yes">
+        <source xml:space="preserve">Enable 2D (flat) cloud layers</source>
+        <target xml:space="preserve">2B (düz) bulut katmanlarını etkinleştirin</target>
+      </trans-unit>
+      <trans-unit id="options/enable-clouds3d-desc:0" approved="yes">
+        <source xml:space="preserve">Enable 3D (volumetric) cloud layers</source>
+        <target xml:space="preserve">3B (hacimsel) bulut katmanlarını etkinleştirin</target>
+      </trans-unit>
+      <trans-unit id="options/enable-distance-attenuation:0" approved="yes">
+        <source xml:space="preserve">Enable runway light distance attenuation</source>
+        <target xml:space="preserve">Pist ışık mesafesi zayıflamasını etkinleştir</target>
+      </trans-unit>
+      <trans-unit id="options/enable-enhanced-lighting:0" approved="yes">
+        <source xml:space="preserve">Enable enhanced runway lighting</source>
+        <target xml:space="preserve">Gelişmiş pist aydınlatmasını etkinleştirin</target>
+      </trans-unit>
+      <trans-unit id="options/enable-fgcom-desc:0" approved="yes">
+        <source xml:space="preserve">Enable FGCom built-in</source>
+        <target xml:space="preserve">Yerleşik FGCom&apos;u etkinleştir</target>
+      </trans-unit>
+      <trans-unit id="options/enable-freeze-desc:0" approved="yes">
+        <source xml:space="preserve">Start in a frozen state</source>
+        <target xml:space="preserve">Donmuş durumda başla</target>
+      </trans-unit>
+      <trans-unit id="options/enable-fuel-freeze-desc:0" approved="yes">
+        <source xml:space="preserve">Fuel tank quantity forced to remain constant</source>
+        <target xml:space="preserve">Sabit kalmaya zorlanan yakıt deposu miktarı</target>
+      </trans-unit>
+      <trans-unit id="options/enable-fullscreen-desc:0" approved="yes">
+        <source xml:space="preserve">Enable fullscreen mode</source>
+        <target xml:space="preserve">Tam ekran modunu etkinleştir</target>
+      </trans-unit>
+      <trans-unit id="options/enable-horizon-effect:0" approved="yes">
+        <source xml:space="preserve">Enable celestial body growth illusion near the horizon</source>
+        <target xml:space="preserve">Ufka yakın gök cismi büyüme yanılsamasını etkinleştirin</target>
+      </trans-unit>
+      <trans-unit id="options/enable-hud-3d-desc:0" approved="yes">
+        <source xml:space="preserve">Enable 3D HUD</source>
+        <target xml:space="preserve">3B HUD&apos;yi etkinleştir</target>
+      </trans-unit>
+      <trans-unit id="options/enable-hud-desc:0" approved="yes">
+        <source xml:space="preserve">Enable Heads Up Display (HUD)</source>
+        <target xml:space="preserve">Baş Üstü Göstergesini (HUD) Etkinleştir</target>
+      </trans-unit>
+      <trans-unit id="options/enable-mouse-pointer-desc:0" approved="yes">
+        <source xml:space="preserve">Enable extra mouse pointer</source>
+        <target xml:space="preserve">Fazladan fare işaretçisini etkinleştir</target>
+      </trans-unit>
+      <trans-unit id="options/enable-mouse-pointer-desc:1" approved="yes">
+        <source xml:space="preserve">(i.e. for full screen Voodoo based cards)</source>
+        <target xml:space="preserve">(yani tam ekran Voodoo tabanlı kartlar için)</target>
+      </trans-unit>
+      <trans-unit id="options/enable-panel-desc:0" approved="yes">
+        <source xml:space="preserve">Enable instrument panel</source>
+        <target xml:space="preserve">Gösterge panelini etkinleştir</target>
+      </trans-unit>
+      <trans-unit id="options/enable-random-buildings-desc:0" approved="yes">
+        <source xml:space="preserve">Include random buildings objects</source>
+        <target xml:space="preserve">Rastgele bina nesnelerini dahil et</target>
+      </trans-unit>
+      <trans-unit id="options/enable-random-objects-desc:0" approved="yes">
+        <source xml:space="preserve">Include random scenery objects</source>
+        <target xml:space="preserve">Rastgele manzara nesnelerini dahil et</target>
+      </trans-unit>
+      <trans-unit id="options/enable-random-vegetation-desc:0" approved="yes">
+        <source xml:space="preserve">Include random vegetation objects</source>
+        <target xml:space="preserve">Rastgele bitki örtüsü nesnelerini dahil et</target>
+      </trans-unit>
+      <trans-unit id="options/enable-real-weather-fetch-desc:0" approved="yes">
+        <source xml:space="preserve">Enable METAR based real weather fetching (this requires an open internet connection)</source>
+        <target xml:space="preserve">METAR tabanlı gerçek hava durumu alımını etkinleştirin (bu, açık bir internet bağlantısı gerektirir)</target>
+      </trans-unit>
+      <trans-unit id="options/enable-rembrandt-desc:0" approved="yes">
+        <source xml:space="preserve">Enable Rembrandt rendering</source>
+        <target xml:space="preserve">Rembrandt oluşturmayı etkinleştir</target>
+      </trans-unit>
+      <trans-unit id="options/enable-save-on-exit:0" approved="yes">
+        <source xml:space="preserve">Allow saving preferences at program exit</source>
+        <target xml:space="preserve">Program çıkışında tercihleri kaydetmeye izin ver</target>
+      </trans-unit>
+      <trans-unit id="options/enable-sound-desc:0" approved="yes">
+        <source xml:space="preserve">Enable sound effects</source>
+        <target xml:space="preserve">Ses efektlerini etkinleştir</target>
+      </trans-unit>
+      <trans-unit id="options/enable-specular-highlight:0" approved="yes">
+        <source xml:space="preserve">Enable specular reflections on textured objects</source>
+        <target xml:space="preserve">Dokulu nesneler üzerinde aynasal yansımaları etkinleştirin</target>
+      </trans-unit>
+      <trans-unit id="options/enable-splash-screen-desc:0" approved="yes">
+        <source xml:space="preserve">Enable splash screen</source>
+        <target xml:space="preserve">Açılış ekranını etkinleştir</target>
+      </trans-unit>
+      <trans-unit id="options/enable-terrasync-desc:0" approved="yes">
+        <source xml:space="preserve">Enable automatic scenery downloads/updates</source>
+        <target xml:space="preserve">Otomatik manzara indirmelerini/güncellemelerini etkinleştir</target>
+      </trans-unit>
+      <trans-unit id="options/enable-textures-desc:0" approved="yes">
+        <source xml:space="preserve">Enable textures</source>
+        <target xml:space="preserve">Dokuları etkinleştir</target>
+      </trans-unit>
+      <trans-unit id="options/enable-wireframe-desc:0" approved="yes">
+        <source xml:space="preserve">Enable wireframe drawing mode</source>
+        <target xml:space="preserve">Tel kafes çizim modunu etkinleştir</target>
+      </trans-unit>
+      <trans-unit id="options/environment-options:0" approved="yes">
+        <source xml:space="preserve">Environment Options</source>
+        <target xml:space="preserve">Çevre Seçenekleri</target>
+      </trans-unit>
+      <trans-unit id="options/failure-desc:0" approved="yes">
+        <source xml:space="preserve">Fail the pitot, static, vacuum, or electrical system (repeat the option for multiple system failures).</source>
+        <target xml:space="preserve">Pitot, statik, vakum veya elektrik sisteminde başarısız olun (birden çok sistem arızası için seçeneği tekrarlayın).</target>
+      </trans-unit>
+      <trans-unit id="options/fdm-desc:0" approved="yes">
+        <source xml:space="preserve">Select the core flight dynamics model</source>
+        <target xml:space="preserve">Çekirdek uçuş dinamiği modelini seçin</target>
+      </trans-unit>
+      <trans-unit id="options/fdm-desc:1" approved="yes">
+        <source xml:space="preserve">Can be one of jsb, larcsim, yasim, magic, balloon, ada, external, or null</source>
+        <target xml:space="preserve">jsb, larcsim, yasim, sihir, balon, ada, harici veya boş&apos;dan biri olabilir</target>
+      </trans-unit>
+      <trans-unit id="options/fdm-options:0" approved="yes">
+        <source xml:space="preserve">Flight Model</source>
+        <target xml:space="preserve">Uçuş Modeli</target>
+      </trans-unit>
+      <trans-unit id="options/features-options:0" approved="yes">
+        <source xml:space="preserve">Features</source>
+        <target xml:space="preserve">Özellikler</target>
+      </trans-unit>
+      <trans-unit id="options/fg-aircraft-desc:0" approved="yes">
+        <source xml:space="preserve">Specify additional aircraft directory path(s) (alternatively, you can use --aircraft-dir to target a specific aircraft in a given directory)</source>
+        <target xml:space="preserve">Ek uçak dizin yolunu/yollarını belirtin (alternatif olarak, belirli bir dizindeki belirli bir uçağı hedeflemek için --aircraft-dir kullanabilirsiniz)</target>
+      </trans-unit>
+      <trans-unit id="options/fg-root-desc:0" approved="yes">
+        <source xml:space="preserve">Specify the root data path</source>
+        <target xml:space="preserve">Kök veri yolunu belirtin</target>
+      </trans-unit>
+      <trans-unit id="options/fg-scenery-desc:0" approved="yes">
+        <source xml:space="preserve">Specify the scenery path(s);</source>
+        <target xml:space="preserve">Manzara yolunu/yollarını belirtin;</target>
+      </trans-unit>
+      <trans-unit id="options/fg-scenery-desc:1" approved="yes">
+        <source xml:space="preserve">Defaults to $FG_ROOT/Scenery</source>
+        <target xml:space="preserve">Varsayılan olarak $FG_ROOT/Scenery</target>
+      </trans-unit>
+      <trans-unit id="options/fgviewer-desc:0" approved="yes">
+        <source xml:space="preserve">Use a model viewer rather than load the entire simulator;</source>
+        <target xml:space="preserve">Tüm simülatörü yüklemek yerine bir model görüntüleyici kullanın;</target>
+      </trans-unit>
+      <trans-unit id="options/fix-desc:0" approved="yes">
+        <source xml:space="preserve">Specify starting position relative to a fix</source>
+        <target xml:space="preserve">Bir düzeltmeye göre başlangıç konumunu belirtin</target>
+      </trans-unit>
+      <trans-unit id="options/flarm-desc:0" approved="yes">
+        <source xml:space="preserve">Open connection using the Flarm protocol, which includes NMEA/GPS and traffic reporting messages</source>
+        <target xml:space="preserve">NMEA/GPS ve trafik raporlama mesajlarını içeren Alev protokolünü kullanarak bağlantıyı açın</target>
+      </trans-unit>
+      <trans-unit id="options/flight-plan-desc:0" approved="yes">
+        <source xml:space="preserve">Read all waypoints from a file</source>
+        <target xml:space="preserve">Bir dosyadan tüm yol noktalarını okuyun</target>
+      </trans-unit>
+      <trans-unit id="options/fog-disable-desc:0" approved="yes">
+        <source xml:space="preserve">Disable fog/haze</source>
+        <target xml:space="preserve">Sis/pusu devre dışı bırak</target>
+      </trans-unit>
+      <trans-unit id="options/fog-fastest-desc:0" approved="yes">
+        <source xml:space="preserve">Enable fastest fog/haze</source>
+        <target xml:space="preserve">En hızlı sis/pusu etkinleştir</target>
+      </trans-unit>
+      <trans-unit id="options/fog-nicest-desc:0" approved="yes">
+        <source xml:space="preserve">Enable nicest fog/haze</source>
+        <target xml:space="preserve">En güzel sis/pus&apos;u etkinleştir</target>
+      </trans-unit>
+      <trans-unit id="options/fov-desc:0" approved="yes">
+        <source xml:space="preserve">Specify field of view angle</source>
+        <target xml:space="preserve">Görüş açısı alanını belirtin</target>
+      </trans-unit>
+      <trans-unit id="options/fpe-desc:0" approved="yes">
+        <source xml:space="preserve">Abort on encountering a floating point exception;</source>
+        <target xml:space="preserve">Bir kayan nokta istisnasıyla karşılaşmayı iptal edin;</target>
+      </trans-unit>
+      <trans-unit id="options/garmin-desc:0" approved="yes">
+        <source xml:space="preserve">Open connection using the Garmin GPS protocol</source>
+        <target xml:space="preserve">Garmin GPS protokolünü kullanarak bağlantıyı açın</target>
+      </trans-unit>
+      <trans-unit id="options/general-options:0" approved="yes">
+        <source xml:space="preserve">General Options</source>
+        <target xml:space="preserve">Genel Seçenekler</target>
+      </trans-unit>
+      <trans-unit id="options/generic-desc:0" approved="yes">
+        <source xml:space="preserve">Open connection using a predefined communication interface and a preselected communication protocol</source>
+        <target xml:space="preserve">Önceden tanımlanmış bir iletişim arayüzü ve önceden seçilmiş bir iletişim protokolü kullanarak bağlantıyı açın</target>
+      </trans-unit>
+      <trans-unit id="options/geometry-desc:0" approved="yes">
+        <source xml:space="preserve">Specify window geometry (640x480, etc)</source>
+        <target xml:space="preserve">Pencere geometrisini belirtin (640x480, vb.)</target>
+      </trans-unit>
+      <trans-unit id="options/glideslope-desc:0" approved="yes">
+        <source xml:space="preserve">Specify flight path angle (can be positive)</source>
+        <target xml:space="preserve">Uçuş yolu açısını belirtin (pozitif olabilir)</target>
+      </trans-unit>
+      <trans-unit id="options/heading-desc:0" approved="yes">
+        <source xml:space="preserve">Specify heading (yaw) angle (Psi)</source>
+        <target xml:space="preserve">Yön (yaw) açısını (Psi) belirtin</target>
+      </trans-unit>
+      <trans-unit id="options/help-desc:0" approved="yes">
+        <source xml:space="preserve">Show the most relevant command line options</source>
+        <target xml:space="preserve">En alakalı komut satırı seçeneklerini göster</target>
+      </trans-unit>
+      <trans-unit id="options/httpd-desc:0" approved="yes">
+        <source xml:space="preserve">Enable http server on the specified address. Specify the port or address:port to bind to.</source>
+        <target xml:space="preserve">Belirtilen adreste http sunucusunu etkinleştirin. Bağlantı noktası veya adresi belirtin:bağlanacak bağlantı noktası.</target>
+      </trans-unit>
+      <trans-unit id="options/hud-culled-desc:0" approved="yes">
+        <source xml:space="preserve">Hud displays percentage of triangles culled</source>
+        <target xml:space="preserve">Hud, ayıklanan üçgenlerin yüzdesini gösterir</target>
+      </trans-unit>
+      <trans-unit id="options/hud-options:0" approved="yes">
+        <source xml:space="preserve">Hud Options</source>
+        <target xml:space="preserve">Hud Seçenekleri</target>
+      </trans-unit>
+      <trans-unit id="options/hud-tris-desc:0" approved="yes">
+        <source xml:space="preserve">Hud displays number of triangles rendered</source>
+        <target xml:space="preserve">Hud, oluşturulan üçgenlerin sayısını görüntüler</target>
+      </trans-unit>
+      <trans-unit id="options/in-air-desc:0" approved="yes">
+        <source xml:space="preserve">Start in air (implied when using --altitude)</source>
+        <target xml:space="preserve">Havada başlayın ( --yükseklik kullanılırken ima edilir)</target>
+      </trans-unit>
+      <trans-unit id="options/io-options:0" approved="yes">
+        <source xml:space="preserve">IO Options</source>
+        <target xml:space="preserve">GÇ Seçenekleri</target>
+      </trans-unit>
+      <trans-unit id="options/joyclient-desc:0" approved="yes">
+        <source xml:space="preserve">Open connection to an Agwagon joystick</source>
+        <target xml:space="preserve">Agwagon joystick&apos;e açık bağlantı</target>
+      </trans-unit>
+      <trans-unit id="options/jpg-httpd-desc:0" approved="yes">
+        <source xml:space="preserve">Enable screen shot http server on the specified port (replaced by --httpd)</source>
+        <target xml:space="preserve">Belirtilen bağlantı noktasında ekran görüntüsü http sunucusunu etkinleştir (--httpd ile değiştirilir)</target>
+      </trans-unit>
+      <trans-unit id="options/jsclient-desc:0" approved="yes">
+        <source xml:space="preserve">Open connection to a remote joystick</source>
+        <target xml:space="preserve">Uzak bir joystick ile bağlantıyı açın</target>
+      </trans-unit>
+      <trans-unit id="options/json-report-desc:0" approved="yes">
+        <source xml:space="preserve">Print a report in JSON format on the standard output, giving information such as the FlightGear version, $FG_ROOT, $FG_HOME, aircraft and scenery paths, etc.</source>
+        <target xml:space="preserve">FlightGear sürümü, $FG_ROOT, $FG_HOME, uçak ve manzara yolları vb. gibi bilgileri veren standart çıktıda JSON formatında bir rapor yazdırın.</target>
+      </trans-unit>
+      <trans-unit id="options/language-desc:0" approved="yes">
+        <source xml:space="preserve">Select the language for this session</source>
+        <target xml:space="preserve">Bu oturum için dil seçin</target>
+      </trans-unit>
+      <trans-unit id="options/lat-desc:0" approved="yes">
+        <source xml:space="preserve">Starting latitude (south = -)</source>
+        <target xml:space="preserve">Başlangıç enlemi (güney = -)</target>
+      </trans-unit>
+      <trans-unit id="options/launcher-desc:0" approved="yes">
+        <source xml:space="preserve">Use GUI launcher</source>
+        <target xml:space="preserve">GKA başlatıcısını kullan</target>
+      </trans-unit>
+      <trans-unit id="options/livery-desc:0" approved="yes">
+        <source xml:space="preserve">Select aircraft livery</source>
+        <target xml:space="preserve">Uçak görünümünü seçin</target>
+      </trans-unit>
+      <trans-unit id="options/load-tape-desc:0" approved="yes">
+        <source xml:space="preserve">Load recording of earlier flightgear session</source>
+        <target xml:space="preserve">Önceki uçuş teçhizatı oturumunun yükleme kaydı</target>
+      </trans-unit>
+      <trans-unit id="options/log-class-desc:0" approved="yes">
+        <source xml:space="preserve">Specify which logging class(es) to use</source>
+        <target xml:space="preserve">Hangi günlüğe kaydetme sınıflarının kullanılacağını belirtin</target>
+      </trans-unit>
+      <trans-unit id="options/log-dir-desc:0" approved="yes">
+        <source xml:space="preserve">Log to directory DIR. The special value &apos;desktop&apos; causes logging to the desktop (OS-dependent location). This option may be given several times, using a different value each time. Inside the specified directory, the written log file is named FlightGear_YYYY-MM-DD_&lt;num&gt;.log, where &lt;num&gt; takes the values 0, 1, 2, etc.</source>
+        <target xml:space="preserve">DIR dizinine giriş yapın. &apos;Masaüstü&apos; özel değeri, masaüstünde oturum açmaya neden olur (işletim sistemine bağlı konum). Bu seçenek, her seferinde farklı bir değer kullanılarak birkaç kez verilebilir. Belirtilen dizinin içinde, yazılı günlük dosyası FlightGear_YYYY-AA-GG_&lt;num&gt;.log olarak adlandırılır, burada &lt;num&gt; 0, 1, 2 vb. değerleri alır.</target>
+      </trans-unit>
+      <trans-unit id="options/log-level-desc:0" approved="yes">
+        <source xml:space="preserve">Specify which logging level to use</source>
+        <target xml:space="preserve">Hangi günlük kaydı düzeyinin kullanılacağını belirtin</target>
+      </trans-unit>
+      <trans-unit id="options/lon-desc:0" approved="yes">
+        <source xml:space="preserve">Starting longitude (west = -)</source>
+        <target xml:space="preserve">Başlangıç boylamı (batı = -)</target>
+      </trans-unit>
+      <trans-unit id="options/mach-desc:0" approved="yes">
+        <source xml:space="preserve">Specify initial mach number</source>
+        <target xml:space="preserve">İlk makine numarasını belirtin</target>
+      </trans-unit>
+      <trans-unit id="options/materials-file-desc:0" approved="yes">
+        <source xml:space="preserve">Specify the materials file used to render the scenery (default: Materials/regions/materials.xml)</source>
+        <target xml:space="preserve">Manzarayı oluşturmak için kullanılan malzeme dosyasını belirtin (varsayılan: Malzemeler/bölgeler/materials.xml)</target>
+      </trans-unit>
+      <trans-unit id="options/max-fps-desc:0" approved="yes">
+        <source xml:space="preserve">Maximum frame rate in Hz.</source>
+        <target xml:space="preserve">Hz cinsinden azami kare hızı.</target>
+      </trans-unit>
+      <trans-unit id="options/metar-desc:0" approved="yes">
+        <source xml:space="preserve">Pass a METAR string to set up static weather (this implies --disable-real-weather-fetch)</source>
+        <target xml:space="preserve">Statik hava durumunu ayarlamak için bir METAR dizesi iletin (bu --gerçek-hava durumu-devre dışı anlamına gelir)</target>
+      </trans-unit>
+      <trans-unit id="options/min-aircraft-status:0" approved="yes">
+        <source xml:space="preserve">Allows you to define a minimum status level (=development status) for all listed aircraft</source>
+        <target xml:space="preserve">Listelenen tüm uçaklar için bir asgari durum seviyesi (=geliştirme durumu) tanımlamanıza izin verir</target>
+      </trans-unit>
+      <trans-unit id="options/model-hz-desc:0" approved="yes">
+        <source xml:space="preserve">Run the FDM this rate (iterations per second)</source>
+        <target xml:space="preserve">FDM&apos;yi bu hızda çalıştırın (saniyede yineleme)</target>
+      </trans-unit>
+      <trans-unit id="options/multiplay-desc:0" approved="yes">
+        <source xml:space="preserve">Specify multipilot communication settings</source>
+        <target xml:space="preserve">Çoklu pilot iletişim ayarlarını belirtin</target>
+      </trans-unit>
+      <trans-unit id="options/multiplayer-options:0" approved="yes">
+        <source xml:space="preserve">MultiPlayer Options</source>
+        <target xml:space="preserve">Çoklu Oyuncu Seçenekleri</target>
+      </trans-unit>
+      <trans-unit id="options/native-ctrls-desc:0" approved="yes">
+        <source xml:space="preserve">Open connection using the FG Native Controls protocol</source>
+        <target xml:space="preserve">FG Doğal Denetimler protokolünü kullanarak bağlantıyı açın</target>
+      </trans-unit>
+      <trans-unit id="options/native-desc:0" approved="yes">
+        <source xml:space="preserve">Open connection using the FG Native protocol</source>
+        <target xml:space="preserve">FG Doğal protokolünü kullanarak bağlantıyı açın</target>
+      </trans-unit>
+      <trans-unit id="options/native-fdm-desc:0" approved="yes">
+        <source xml:space="preserve">Open connection using the FG Native FDM protocol</source>
+        <target xml:space="preserve">FG Doğal FDM protokolünü kullanarak bağlantıyı açın</target>
+      </trans-unit>
+      <trans-unit id="options/native-gui-desc:0" approved="yes">
+        <source xml:space="preserve">Open connection using the FG Native GUI protocol</source>
+        <target xml:space="preserve">FG Doğal GKA protokolünü kullanarak bağlantıyı açın</target>
+      </trans-unit>
+      <trans-unit id="options/nav1-desc:0" approved="yes">
+        <source xml:space="preserve">Set the NAV1 radio frequency, optionally preceded by a radial.</source>
+        <target xml:space="preserve">NAV1 radyo frekansını, başında isteğe bağlı olarak bir radyal gelecek şekilde ayarlayın.</target>
+      </trans-unit>
+      <trans-unit id="options/nav2-desc:0" approved="yes">
+        <source xml:space="preserve">Set the NAV2 radio frequency, optionally preceded by a radial.</source>
+        <target xml:space="preserve">NAV2 radyo frekansını, başında isteğe bağlı olarak bir radyal gelecek şekilde ayarlayın.</target>
+      </trans-unit>
+      <trans-unit id="options/ndb-desc:0" approved="yes">
+        <source xml:space="preserve">Specify starting position relative to an NDB</source>
+        <target xml:space="preserve">Bir NDB&apos;ye göre başlangıç konumunu belirtin</target>
+      </trans-unit>
+      <trans-unit id="options/ndb-freq-desc:0" approved="yes">
+        <source xml:space="preserve">Specify the frequency of the NDB. Use with --ndb=ID</source>
+        <target xml:space="preserve">NDB&apos;nin frekansını belirtin. --ndb=ID ile kullan</target>
+      </trans-unit>
+      <trans-unit id="options/network-options:0" approved="yes">
+        <source xml:space="preserve">Network Options</source>
+        <target xml:space="preserve">Ağ Seçenekleri</target>
+      </trans-unit>
+      <trans-unit id="options/nmea-desc:0" approved="yes">
+        <source xml:space="preserve">Open connection using the NMEA protocol</source>
+        <target xml:space="preserve">NMEA protokolünü kullanarak bağlantıyı açın</target>
+      </trans-unit>
+      <trans-unit id="options/notrim-desc:0" approved="yes">
+        <source xml:space="preserve">Do NOT attempt to trim the model</source>
+        <target xml:space="preserve">Modeli kırpmaya ÇALIŞMAYIN</target>
+      </trans-unit>
+      <trans-unit id="options/notrim-desc:1" approved="yes">
+        <source xml:space="preserve">(only with fdm=jsbsim)</source>
+        <target xml:space="preserve">(yalnızca fdm=jsbsim ile)</target>
+      </trans-unit>
+      <trans-unit id="options/offset-azimuth-desc:0" approved="yes">
+        <source xml:space="preserve">Specify heading to reference point</source>
+        <target xml:space="preserve">Referans noktasına istikamet belirtin</target>
+      </trans-unit>
+      <trans-unit id="options/offset-distance-desc:0" approved="yes">
+        <source xml:space="preserve">Specify distance to reference point (statute miles)</source>
+        <target xml:space="preserve">Referans noktasına olan mesafeyi belirtin (mevzuat milleri)</target>
+      </trans-unit>
+      <trans-unit id="options/on-ground-desc:0" approved="yes">
+        <source xml:space="preserve">Start at ground level (default)</source>
+        <target xml:space="preserve">Zemin seviyesinde başla (varsayılan)</target>
+      </trans-unit>
+      <trans-unit id="options/opengc-desc:0" approved="yes">
+        <source xml:space="preserve">Open connection using the OpenGC protocol</source>
+        <target xml:space="preserve">OpenGC protokolünü kullanarak bağlantıyı açın</target>
+      </trans-unit>
+      <trans-unit id="options/parking-id-desc:0" approved="yes">
+        <source xml:space="preserve">Specify parking position at an airport (must also specify an airport)</source>
+        <target xml:space="preserve">Bir havaalanında park yeri belirtin (bir havaalanı da belirtilmelidir)</target>
+      </trans-unit>
+      <trans-unit id="options/parkpos-desc:0" approved="yes">
+        <source xml:space="preserve">Specify which starting position on an AI carrier (must also specify a carrier)</source>
+        <target xml:space="preserve">Bir AI taşıyıcısında hangi başlangıç konumunu belirtin (bir taşıyıcı da belirtilmelidir)</target>
+      </trans-unit>
+      <trans-unit id="options/pitch-desc:0" approved="yes">
+        <source xml:space="preserve">Specify pitch angle (Theta)</source>
+        <target xml:space="preserve">Adım açısını belirtin (Teta)</target>
+      </trans-unit>
+      <trans-unit id="options/position-options:0" approved="yes">
+        <source xml:space="preserve">Initial Position and Orientation</source>
+        <target xml:space="preserve">İlk Konum ve Yönelim</target>
+      </trans-unit>
+      <trans-unit id="options/prop-desc:0" approved="yes">
+        <source xml:space="preserve">Set property &lt;name&gt; to &lt;value&gt;. &lt;type&gt; can be one of string, double, float, long, int, or bool.</source>
+        <target xml:space="preserve">&lt;name&gt; özelliğini &lt;value&gt; olarak ayarlayın. &lt;type&gt; dize, çift, kayan, uzun, int veya bool olabilir.</target>
+      </trans-unit>
+      <trans-unit id="options/props-desc:0" approved="yes">
+        <source xml:space="preserve">Open connection using the interactive property manager</source>
+        <target xml:space="preserve">Etkileşimli özellik yöneticisini kullanarak bağlantıyı açın</target>
+      </trans-unit>
+      <trans-unit id="options/proxy-desc:0" approved="yes">
+        <source xml:space="preserve">Specify which proxy server (and port) to use. The username and password are optional and should be MD5 encoded already. This option is only useful when used in conjunction with the real-weather-fetch option.</source>
+        <target xml:space="preserve">Hangi proxy sunucusunun (ve bağlantı noktasının) kullanılacağını belirtin. Kullanıcı adı ve parola isteğe bağlıdır ve önceden MD5 olarak kodlanmış olmalıdır. Bu seçenek yalnızca gerçek hava durumu getirme seçeneğiyle birlikte kullanıldığında kullanışlıdır.</target>
+      </trans-unit>
+      <trans-unit id="options/pve-desc:0" approved="yes">
+        <source xml:space="preserve">Open connection using the PVE protocol</source>
+        <target xml:space="preserve">PVE protokolünü kullanarak bağlantıyı açın</target>
+      </trans-unit>
+      <trans-unit id="options/random-objects-desc:0" approved="yes">
+        <source xml:space="preserve">(buildings, etc.)</source>
+        <target xml:space="preserve">(binalar vb.)</target>
+      </trans-unit>
+      <trans-unit id="options/random-wind-desc:0" approved="yes">
+        <source xml:space="preserve">Set up random wind direction and speed</source>
+        <target xml:space="preserve">Rastgele rüzgar yönünü ve hızını ayarlayın</target>
+      </trans-unit>
+      <trans-unit id="options/ray-desc:0" approved="yes">
+        <source xml:space="preserve">Open connection using the Ray Woodworth motion chair protocol</source>
+        <target xml:space="preserve">Ray Woodworth hareketli sandalye protokolünü kullanarak bağlantıyı açın</target>
+      </trans-unit>
+      <trans-unit id="options/rendering-options:0" approved="yes">
+        <source xml:space="preserve">Rendering Options</source>
+        <target xml:space="preserve">İşleme Seçenekleri</target>
+      </trans-unit>
+      <trans-unit id="options/restore-defaults-desc:0" approved="yes">
+        <source xml:space="preserve">Reset all user settings to their defaults (rendering options etc)</source>
+        <target xml:space="preserve">Tüm kullanıcı ayarlarını varsayılanlarına sıfırlayın (oluşturma seçenekleri vb.)</target>
+      </trans-unit>
+      <trans-unit id="options/roc-desc:0" approved="yes">
+        <source xml:space="preserve">Specify initial climb rate (can be negative)</source>
+        <target xml:space="preserve">İlk tırmanma oranını belirtin (negatif olabilir)</target>
+      </trans-unit>
+      <trans-unit id="options/roll-desc:0" approved="yes">
+        <source xml:space="preserve">Specify roll angle (Phi)</source>
+        <target xml:space="preserve">Yuvarlanma açısını belirtin (Phi)</target>
+      </trans-unit>
+      <trans-unit id="options/route-options:0" approved="yes">
+        <source xml:space="preserve">Route/Way Point Options</source>
+        <target xml:space="preserve">Rota/Yol Noktası Seçenekleri</target>
+      </trans-unit>
+      <trans-unit id="options/rul-desc:0" approved="yes">
+        <source xml:space="preserve">Open connection using the RUL protocol</source>
+        <target xml:space="preserve">RUL protokolünü kullanarak bağlantıyı açın</target>
+      </trans-unit>
+      <trans-unit id="options/runway-no-desc:0" approved="yes">
+        <source xml:space="preserve">Specify starting runway (must also specify an airport)</source>
+        <target xml:space="preserve">Başlangıç pistini belirtin (bir havalimanı da belirtilmelidir)</target>
+      </trans-unit>
+      <trans-unit id="options/season-desc:0" approved="yes">
+        <source xml:space="preserve">Specify the startup season</source>
+        <target xml:space="preserve">Başlangıç sezonunu belirtin</target>
+      </trans-unit>
+      <trans-unit id="options/shading-flat-desc:0" approved="yes">
+        <source xml:space="preserve">Enable flat shading</source>
+        <target xml:space="preserve">Düz gölgelemeyi etkinleştir</target>
+      </trans-unit>
+      <trans-unit id="options/shading-smooth-desc:0" approved="yes">
+        <source xml:space="preserve">Enable smooth shading</source>
+        <target xml:space="preserve">Düzgün gölgelemeyi etkinleştir</target>
+      </trans-unit>
+      <trans-unit id="options/show-aircraft-desc:0" approved="yes">
+        <source xml:space="preserve">Print a list of the currently available aircraft types</source>
+        <target xml:space="preserve">Şu anda mevcut olan uçak türlerinin bir listesini yazdırın</target>
+      </trans-unit>
+      <trans-unit id="options/show-sound-devices-desc:0" approved="yes">
+        <source xml:space="preserve">Show a list of available audio device</source>
+        <target xml:space="preserve">Kullanılabilir ses cihazının listesini göster</target>
+      </trans-unit>
+      <trans-unit id="options/situation-options:0" approved="yes">
+        <source xml:space="preserve">Situation Options</source>
+        <target xml:space="preserve">Durum Seçenekleri</target>
+      </trans-unit>
+      <trans-unit id="options/sound-device-desc:0" approved="yes">
+        <source xml:space="preserve">Explicitly specify the audio device to use</source>
+        <target xml:space="preserve">Kullanılacak ses cihazını açıkça belirtin</target>
+      </trans-unit>
+      <trans-unit id="options/speed-desc:0" approved="yes">
+        <source xml:space="preserve">Run the FDM &apos;n&apos; times faster than real time</source>
+        <target xml:space="preserve">FDM&apos;yi &apos;n&apos; kez gerçek zamandan daha hızlı çalıştırın</target>
+      </trans-unit>
+      <trans-unit id="options/start-date-desc:0" approved="yes">
+        <source xml:space="preserve">Specify a starting date/time with respect to</source>
+        <target xml:space="preserve">Şuna göre bir başlangıç tarihi/saati belirtin</target>
+      </trans-unit>
+      <trans-unit id="options/telnet-desc:0" approved="yes">
+        <source xml:space="preserve">Enable telnet server on the specified port</source>
+        <target xml:space="preserve">Belirtilen bağlantı noktasında telnet sunucusunu etkinleştir</target>
+      </trans-unit>
+      <trans-unit id="options/terrasync-dir-desc:0" approved="yes">
+        <source xml:space="preserve">Set target directory for scenery downloads</source>
+        <target xml:space="preserve">Manzara indirmeleri için hedef dizini ayarla</target>
+      </trans-unit>
+      <trans-unit id="options/texture-filtering-desc:0" approved="yes">
+        <source xml:space="preserve">Anisotropic Texture Filtering: values should be 1 (default),2,4,8 or 16</source>
+        <target xml:space="preserve">Anizotropik Doku Filtreleme: değerler 1 (varsayılan),2,4,8 veya 16 olmalıdır</target>
+      </trans-unit>
+      <trans-unit id="options/time-match-local-desc:0" approved="yes">
+        <source xml:space="preserve">Synchronize time with local real-world time</source>
+        <target xml:space="preserve">Zamanı yerel gerçek dünya saati ile senkronize edin</target>
+      </trans-unit>
+      <trans-unit id="options/time-match-real-desc:0" approved="yes">
+        <source xml:space="preserve">Synchronize time with real-world time</source>
+        <target xml:space="preserve">Zamanı gerçek dünya saati ile senkronize edin</target>
+      </trans-unit>
+      <trans-unit id="options/time-offset-desc:0" approved="yes">
+        <source xml:space="preserve">Add this time offset</source>
+        <target xml:space="preserve">Bu zaman ofsetini ekle</target>
+      </trans-unit>
+      <trans-unit id="options/time-options:0" approved="yes">
+        <source xml:space="preserve">Time Options</source>
+        <target xml:space="preserve">Zaman Seçenekleri</target>
+      </trans-unit>
+      <trans-unit id="options/timeofday-desc:0" approved="yes">
+        <source xml:space="preserve">Specify a time of day</source>
+        <target xml:space="preserve">Günün saatini belirtme</target>
+      </trans-unit>
+      <trans-unit id="options/trace-read-desc:0" approved="yes">
+        <source xml:space="preserve">Trace the reads for a property;</source>
+        <target xml:space="preserve">Bir özellik için okumaları izleme;</target>
+      </trans-unit>
+      <trans-unit id="options/trace-write-desc:0" approved="yes">
+        <source xml:space="preserve">Trace the writes for a property;</source>
+        <target xml:space="preserve">Bir özellik için yazılanları takip edin;</target>
+      </trans-unit>
+      <trans-unit id="options/trim-desc:0" approved="yes">
+        <source xml:space="preserve">Trim the model</source>
+        <target xml:space="preserve">Modeli kırp</target>
+      </trans-unit>
+      <trans-unit id="options/trim-desc:1" approved="yes">
+        <source xml:space="preserve">(only with fdm=jsbsim)</source>
+        <target xml:space="preserve">(yalnızca fdm=jsbsim ile)</target>
+      </trans-unit>
+      <trans-unit id="options/turbulence-desc:0" approved="yes">
+        <source xml:space="preserve">Specify turbulence from 0.0 (calm) to 1.0 (severe)</source>
+        <target xml:space="preserve">0,0 (sakin) ile 1,0 (şiddetli) arasında türbülansı belirtin</target>
+      </trans-unit>
+      <trans-unit id="options/uBody-desc:0" approved="yes">
+        <source xml:space="preserve">Specify velocity along the body X axis</source>
+        <target xml:space="preserve">Gövde X ekseni boyunca hızı belirtin</target>
+      </trans-unit>
+      <trans-unit id="options/units-feet-desc:0" approved="yes">
+        <source xml:space="preserve">Use feet for distances</source>
+        <target xml:space="preserve">Mesafeler için feet kullanın</target>
+      </trans-unit>
+      <trans-unit id="options/units-meters-desc:0" approved="yes">
+        <source xml:space="preserve">Use meters for distances</source>
+        <target xml:space="preserve">Mesafeler için metre kullanın</target>
+      </trans-unit>
+      <trans-unit id="options/usage:0" approved="yes">
+        <source xml:space="preserve">Usage: fgfs [ option ... ]</source>
+        <target xml:space="preserve">Kullanım: fgfs [ seçenek ... ]</target>
+      </trans-unit>
+      <trans-unit id="options/vBody-desc:0" approved="yes">
+        <source xml:space="preserve">Specify velocity along the body Y axis</source>
+        <target xml:space="preserve">Gövde Y ekseni boyunca hızı belirtin</target>
+      </trans-unit>
+      <trans-unit id="options/vDown-desc:0" approved="yes">
+        <source xml:space="preserve">Specify velocity along a vertical axis</source>
+        <target xml:space="preserve">Dikey bir eksen boyunca hızı belirtin</target>
+      </trans-unit>
+      <trans-unit id="options/vEast-desc:0" approved="yes">
+        <source xml:space="preserve">Specify velocity along a West-East axis</source>
+        <target xml:space="preserve">Batı-Doğu ekseni boyunca hızı belirtin</target>
+      </trans-unit>
+      <trans-unit id="options/vNorth-desc:0" approved="yes">
+        <source xml:space="preserve">Specify velocity along a South-North axis</source>
+        <target xml:space="preserve">Güney-Kuzey ekseni boyunca hızı belirtin</target>
+      </trans-unit>
+      <trans-unit id="options/vc-desc:0" approved="yes">
+        <source xml:space="preserve">Specify initial airspeed</source>
+        <target xml:space="preserve">İlk hava hızını belirtin</target>
+      </trans-unit>
+      <trans-unit id="options/vehicle-desc:0" approved="yes">
+        <source xml:space="preserve">Select an vehicle profile as defined by a top level &lt;name&gt;-set.xml</source>
+        <target xml:space="preserve">Üst düzey &lt;name&gt;-set.xml tarafından tanımlanan bir araç profili seçin</target>
+      </trans-unit>
+      <trans-unit id="options/verbose-desc:0" approved="yes">
+        <source xml:space="preserve">Show all command line options when combined with --help or -h</source>
+        <target xml:space="preserve">--yardım veya -h ile birleştirildiğinde tüm komut satırı seçeneklerini göster</target>
+      </trans-unit>
+      <trans-unit id="options/verbose-help:0" approved="yes">
+        <source xml:space="preserve">For a complete list of options use --help --verbose</source>
+        <target xml:space="preserve">Seçeneklerin tam listesi için --yardım --ayrıntılı kullanın</target>
+      </trans-unit>
+      <trans-unit id="options/version-desc:0" approved="yes">
+        <source xml:space="preserve">Display the current FlightGear version</source>
+        <target xml:space="preserve">Geçerli FlightGear sürümünü görüntüleyin</target>
+      </trans-unit>
+      <trans-unit id="options/view-offset-desc:0" approved="yes">
+        <source xml:space="preserve">Specify the default forward view direction as an offset from straight ahead. Allowable values are LEFT, RIGHT, CENTER, or a specific number in degrees</source>
+        <target xml:space="preserve">Düz ileriden öteleme olarak varsayılan ileri görüş yönünü belirtin. İzin verilen değerler SOL, SAĞ, MERKEZ veya derece cinsinden belirli bir sayıdır</target>
+      </trans-unit>
+      <trans-unit id="options/visibility-desc:0" approved="yes">
+        <source xml:space="preserve">Specify initial visibility</source>
+        <target xml:space="preserve">İlk görünürlüğü belirtin</target>
+      </trans-unit>
+      <trans-unit id="options/visibility-miles-desc:0" approved="yes">
+        <source xml:space="preserve">Specify initial visibility in miles</source>
+        <target xml:space="preserve">İlk görünürlüğü mil olarak belirtin</target>
+      </trans-unit>
+      <trans-unit id="options/vor-desc:0" approved="yes">
+        <source xml:space="preserve">Specify starting position relative to a VOR</source>
+        <target xml:space="preserve">Bir VOR&apos;a göre başlangıç konumunu belirtin</target>
+      </trans-unit>
+      <trans-unit id="options/vor-freq-desc:0" approved="yes">
+        <source xml:space="preserve">Specify the frequency of the VOR. Use with --vor=ID</source>
+        <target xml:space="preserve">VOR frekansını belirtin. --vor=ID ile kullanın</target>
+      </trans-unit>
+      <trans-unit id="options/wBody-desc:0" approved="yes">
+        <source xml:space="preserve">Specify velocity along the body Z axis</source>
+        <target xml:space="preserve">Gövde Z ekseni boyunca hızı belirtin</target>
+      </trans-unit>
+      <trans-unit id="options/wind-desc:0" approved="yes">
+        <source xml:space="preserve">Specify wind coming from DIR (degrees) at SPEED (knots)</source>
+        <target xml:space="preserve">DIR&apos;den (derece) gelen rüzgarı HIZ&apos;da (knot) belirtin</target>
+      </trans-unit>
+      <trans-unit id="options/wp-desc:0" approved="yes">
+        <source xml:space="preserve">Specify a waypoint for the GC autopilot;</source>
+        <target xml:space="preserve">GC otopilot için bir ara nokta belirleyin;</target>
+      </trans-unit>
+    </group>
+    <group restype="x-trolltech-linguist-context" resname="sys">
+      <trans-unit id="sys/binding-subsystems:0" approved="yes">
+        <source xml:space="preserve">binding subsystems</source>
+        <target xml:space="preserve">bağlayıcı alt sistemler</target>
+      </trans-unit>
+      <trans-unit id="sys/creating-subsystems:0" approved="yes">
+        <source xml:space="preserve">creating subsystems</source>
+        <target xml:space="preserve">alt sistemler oluştur</target>
+      </trans-unit>
+      <trans-unit id="sys/downloading-scenery:0" approved="yes">
+        <source xml:space="preserve">downloading scenery</source>
+        <target xml:space="preserve">manzara indir</target>
+      </trans-unit>
+      <trans-unit id="sys/finalize-position:0" approved="yes">
+        <source xml:space="preserve">finalizing position</source>
+        <target xml:space="preserve">pozisyonu sonlandırma</target>
+      </trans-unit>
+      <trans-unit id="sys/finishing-subsystems:0" approved="yes">
+        <source xml:space="preserve">finalizing subsystems</source>
+        <target xml:space="preserve">alt sistemleri sonlandırma</target>
+      </trans-unit>
+      <trans-unit id="sys/init:0" approved="yes">
+        <source xml:space="preserve">initializing</source>
+        <target xml:space="preserve">başlatılıyor</target>
+      </trans-unit>
+      <trans-unit id="sys/init-graphics:0" approved="yes">
+        <source xml:space="preserve">initializing graphics engine</source>
+        <target xml:space="preserve">grafik motoru başlatılıyor</target>
+      </trans-unit>
+      <trans-unit id="sys/init-scenery:0" approved="yes">
+        <source xml:space="preserve">initializing scenery</source>
+        <target xml:space="preserve">manzara başlatılıyor</target>
+      </trans-unit>
+      <trans-unit id="sys/init-subsystems:0" approved="yes">
+        <source xml:space="preserve">initializing subsystems</source>
+        <target xml:space="preserve">alt sistemler başlatılıyor</target>
+      </trans-unit>
+      <trans-unit id="sys/loading-aircraft:0" approved="yes">
+        <source xml:space="preserve">loading aircraft</source>
+        <target xml:space="preserve">uçak yükleniyor</target>
+      </trans-unit>
+      <trans-unit id="sys/loading-aircraft-list:0" approved="yes">
+        <source xml:space="preserve">loading aircraft list</source>
+        <target xml:space="preserve">uçak listesi yükleniyor</target>
+      </trans-unit>
+      <trans-unit id="sys/loading-nav-dat:0" approved="yes">
+        <source xml:space="preserve">loading navigation data</source>
+        <target xml:space="preserve">navigasyon verilerinin yükleniyor</target>
+      </trans-unit>
+      <trans-unit id="sys/loading-scenery:0" approved="yes">
+        <source xml:space="preserve">loading scenery</source>
+        <target xml:space="preserve">manzara yükleniyor</target>
+      </trans-unit>
+      <trans-unit id="sys/navdata-fixes:0" approved="yes">
+        <source xml:space="preserve">loading fixes</source>
+        <target xml:space="preserve">düzeltmeler yükleniyor</target>
+      </trans-unit>
+      <trans-unit id="sys/navdata-load-percent:0" approved="yes">
+        <source xml:space="preserve">[VALUE]% complete</source>
+        <target xml:space="preserve">%[VALUE] tamamlandı</target>
+      </trans-unit>
+      <trans-unit id="sys/navdata-loading-airports:0" approved="yes">
+        <source xml:space="preserve">loading airport data</source>
+        <target xml:space="preserve">havaalanı verileri yükleniyor</target>
+      </trans-unit>
+      <trans-unit id="sys/navdata-navaids:0" approved="yes">
+        <source xml:space="preserve">loading navigation aid data</source>
+        <target xml:space="preserve">navigasyon yardım verileri yükleniyor</target>
+      </trans-unit>
+      <trans-unit id="sys/navdata-pois:0" approved="yes">
+        <source xml:space="preserve">loading points of interest</source>
+        <target xml:space="preserve">ilgi noktaları yükleniyor</target>
+      </trans-unit>
+      <trans-unit id="sys/navdata-reading-apt-dat-files:0" approved="yes">
+        <source xml:space="preserve">reading airport data</source>
+        <target xml:space="preserve">havaalanı verileri okunuyor</target>
+      </trans-unit>
+      <trans-unit id="sys/scenery-extract:0" approved="yes">
+        <source xml:space="preserve">extracting [VALUE]</source>
+        <target xml:space="preserve">[VALUE] ayıklanıyor</target>
+      </trans-unit>
+      <trans-unit id="sys/settings-migration-text:0" approved="yes">
+        <source xml:space="preserve">Saved settings were migrated from a previous version of FlightGear. If you encounter any problems when using the system, try restoring the default settings, before reporting a problem. Saved settings can affect the appearance, performance and features of the simulator.</source>
+        <target xml:space="preserve">Kaydedilen ayarlar, FlightGear&apos;ın önceki bir sürümünden taşındı. Sistemi kullanırken herhangi bir sorunla karşılaşırsanız, sorunu bildirmeden önce varsayılan ayarları geri yüklemeyi deneyin. Kaydedilen ayarlar simülatörün görünümünü, performansını ve özelliklerini etkileyebilir.</target>
+      </trans-unit>
+      <trans-unit id="sys/settings-migration-title:0" approved="yes">
+        <source xml:space="preserve">Settings migrated</source>
+        <target xml:space="preserve">Ayarlar taşındı</target>
+      </trans-unit>
+      <trans-unit id="sys/unstable-warning:0" approved="yes">
+        <source xml:space="preserve">Unstable nightly build - some features may be under active development</source>
+        <target xml:space="preserve">Kararsız gece yapısı - bazı özellikler aktif geliştirme aşamasında olabilir</target>
+      </trans-unit>
+    </group>
+    <group restype="x-trolltech-linguist-context" resname="tips">
+      <trans-unit id="tips/tip:0" approved="yes">
+        <source xml:space="preserve">Drag while holding the right mouse button to look around</source>
+        <target xml:space="preserve">Etrafa bakmak için farenin sağ düğmesini basılı tutarken sürükleyin</target>
+      </trans-unit>
+      <trans-unit id="tips/tip:1" approved="yes">
+        <source xml:space="preserve">Hold [Shift] while looking around to move the view up, down, left or right</source>
+        <target xml:space="preserve">Görünümü yukarı, aşağı, sola veya sağa hareket ettirmek için etrafa bakarken [Shift] tuşunu basılı tutun</target>
+      </trans-unit>
+      <trans-unit id="tips/tip:2" approved="yes">
+        <source xml:space="preserve">Press a/A to adjust the simulation speed</source>
+        <target xml:space="preserve">Simülasyon hızını ayarlamak için a/A&apos;ya basın</target>
+      </trans-unit>
+      <trans-unit id="tips/tip:3" approved="yes">
+        <source xml:space="preserve">Press x/X to zoom in and out</source>
+        <target xml:space="preserve">Yakınlaştırmak ve uzaklaştırmak için x/X&apos;e basın</target>
+      </trans-unit>
+      <trans-unit id="tips/tip:4" approved="yes">
+        <source xml:space="preserve">Find frequencies of nearby ATC services from the Radios dialog</source>
+        <target xml:space="preserve">Radyolar iletişim kutusundan yakındaki ATC hizmetlerinin frekanslarını bulun</target>
+      </trans-unit>
+      <trans-unit id="tips/tip:5" approved="yes">
+        <source xml:space="preserve">Press v to change your viewpoint, Ctrl-V to return to the cockpit</source>
+        <target xml:space="preserve">Bakış açınızı değiştirmek için v&apos;ye, kokpite dönmek için Ctrl-V&apos;ye basın</target>
+      </trans-unit>
+      <trans-unit id="tips/tip:6" approved="yes">
+        <source xml:space="preserve">Press F3 to take a screenshot</source>
+        <target xml:space="preserve">Ekran görüntüsü almak için F3&apos;e basın</target>
+      </trans-unit>
+      <trans-unit id="tips/tip:7" approved="yes">
+        <source xml:space="preserve">Join the FlightGear community at http://forum.flightgear.org</source>
+        <target xml:space="preserve">FlightGear topluluğuna katılın http://forum.flightgear.org</target>
+      </trans-unit>
+      <trans-unit id="tips/tip:8" approved="yes">
+        <source xml:space="preserve">Press h to bring up a Heads Up Display</source>
+        <target xml:space="preserve">Baş Üstü Göstergesini getirmek için h tuşuna basın</target>
+      </trans-unit>
+      <trans-unit id="tips/tip:9" approved="yes">
+        <source xml:space="preserve">Show or hide the menu bar by pressing F10</source>
+        <target xml:space="preserve">F10 tuşuna basarak menü çubuğunu gösterin veya gizleyin</target>
+      </trans-unit>
+      <trans-unit id="tips/tip:10" approved="yes">
+        <source xml:space="preserve">Frame-rate too low? - try disabling AI traffic</source>
+        <target xml:space="preserve">Kare hızı çok mu düşük? - AI trafiğini devre dışı bırakmayı deneyin</target>
+      </trans-unit>
+      <trans-unit id="tips/tip:11" approved="yes">
+        <source xml:space="preserve">Select Environment → Weather to fly in different weather</source>
+        <target xml:space="preserve">Farklı havalarda uçmak için Ortam → Hava Durumu&apos;nu seçin</target>
+      </trans-unit>
+      <trans-unit id="tips/tip:12" approved="yes">
+        <source xml:space="preserve">Press F12 to change the radio frequencies easily</source>
+        <target xml:space="preserve">Radyo frekanslarını kolayca değiştirmek için F12&apos;ye basın</target>
+      </trans-unit>
+      <trans-unit id="tips/tip:13" approved="yes">
+        <source xml:space="preserve">Look around by holding down the right mouse button and moving the mouse</source>
+        <target xml:space="preserve">Sağ fare düğmesini basılı tutarak ve fareyi hareket ettirerek etrafa bakın</target>
+      </trans-unit>
+      <trans-unit id="tips/tip:14" approved="yes">
+        <source xml:space="preserve">Select Multiplayer → Multiplayer Settings to join the shared flight environment</source>
+        <target xml:space="preserve">Paylaşılan uçuş ortamına katılmak için Çok Oyunculu → Çok Oyunculu Ayarları&apos;nı seçin</target>
+      </trans-unit>
+      <trans-unit id="tips/tip:15" approved="yes">
+        <source xml:space="preserve">Can&apos;t get the engine started? - see Help → Aircraft Checklists</source>
+        <target xml:space="preserve">Motoru çalıştıramıyor musunuz? - bkz. Yardım → Uçak Kontrol Listeleri</target>
+      </trans-unit>
+      <trans-unit id="tips/tip:16" approved="yes">
+        <source xml:space="preserve">Drag while holding the middle and right mouse buttons to move the viewpoint</source>
+        <target xml:space="preserve">Bakış açısını taşımak için orta ve sağ fare düğmelerini basılı tutarken sürükleyin</target>
+      </trans-unit>
+      <trans-unit id="tips/tip:17" approved="yes">
+        <source xml:space="preserve">Press / to explore the internals of the simulator</source>
+        <target xml:space="preserve">Simülatörün içindekileri keşfetmek için / tuşlarına basın</target>
+      </trans-unit>
+      <trans-unit id="tips/tip:18" approved="yes">
+        <source xml:space="preserve">Press Tab to move the viewpoint with your mouse and use the scroll wheel to zoom</source>
+        <target xml:space="preserve">Bakış açısını farenizle hareket ettirmek için Sekme&apos;ye basın ve yakınlaştırmak için kaydırma tekerleğini kullanın</target>
+      </trans-unit>
+    </group>
+    <group restype="x-trolltech-linguist-context" resname="weather-scenarios">
+      <trans-unit id="weather-scenarios/border-high-pressure-region-desc:0" approved="yes">
+        <source xml:space="preserve">The border of a high pressure region, in which the airmass becomes unstable and various convective and stratiform clouds may appear.</source>
+        <target xml:space="preserve">Hava kütlesinin dengesiz hale geldiği ve çeşitli konvektif ve tabakalı bulutların ortaya çıkabileceği yüksek basınçlı bir bölgenin sınırı.</target>
+      </trans-unit>
+      <trans-unit id="weather-scenarios/border-high-pressure-region-name:0" approved="yes">
+        <source xml:space="preserve">Border of a high pressure region</source>
+        <target xml:space="preserve">Yüksek basınç bölgesi sınırı</target>
+      </trans-unit>
+      <trans-unit id="weather-scenarios/border-low-pressure-region-desc:0" approved="yes">
+        <source xml:space="preserve">The border of a low pressure region, in which the airmass is unstable and convective clouds start to form layers and merge into stratiform clouds.</source>
+        <target xml:space="preserve">Hava kütlesinin kararsız olduğu ve konvektif bulutların katmanlar oluşturmaya ve katmanlı bulutlar halinde birleşmeye başladığı alçak basınç bölgesinin sınırı.</target>
+      </trans-unit>
+      <trans-unit id="weather-scenarios/border-low-pressure-region-name:0" approved="yes">
+        <source xml:space="preserve">Border of a low pressure region</source>
+        <target xml:space="preserve">Alçak basınç bölgesi sınırı</target>
+      </trans-unit>
+      <trans-unit id="weather-scenarios/cat-one-minimum-desc:0" approved="yes">
+        <source xml:space="preserve">If you just got your IFR rating, this is what you are allowed to do. But can you?</source>
+        <target xml:space="preserve">IFR derecenizi yeni aldıysanız, bunu yapmanıza izin verilir. Ama yapabilir misin?</target>
+      </trans-unit>
+      <trans-unit id="weather-scenarios/cat-one-minimum-name:0" approved="yes">
+        <source xml:space="preserve">CAT I minimum</source>
+        <target xml:space="preserve">CAT I asgari</target>
+      </trans-unit>
+      <trans-unit id="weather-scenarios/cat-three-b-minimum-desc:0" approved="yes">
+        <source xml:space="preserve">This is expert level. You will barely see the taxiway from the cockpit, even if you are on ground. Fog and light drizzle, freezing level at 1000ft.</source>
+        <target xml:space="preserve">Bu uzman seviyesidir. Yerde olsanız bile taksi yolunu kokpitten zar zor göreceksiniz. Sis ve hafif çiseleyen yağmur, 1000ft&apos;de donma seviyesi.</target>
+      </trans-unit>
+      <trans-unit id="weather-scenarios/cat-three-b-minimum-name:0" approved="yes">
+        <source xml:space="preserve">CAT IIIb minimum</source>
+        <target xml:space="preserve">CAT IIIb asgari</target>
+      </trans-unit>
+      <trans-unit id="weather-scenarios/cat-two-minimum-desc:0" approved="yes">
+        <source xml:space="preserve">With just a 1/4 mile visibility and clouds at 100ft, you don&apos;t see much of the runway until seconds before touchdown. Trust your instruments to stay alive.</source>
+        <target xml:space="preserve">Sadece 1/4 mil görüş mesafesi ve 100 ft&apos;deki bulutlarla, inişten saniyeler öncesine kadar pistin çoğunu göremezsiniz. Hayatta kalmak için enstrümanlarınıza güvenin.</target>
+      </trans-unit>
+      <trans-unit id="weather-scenarios/cat-two-minimum-name:0" approved="yes">
+        <source xml:space="preserve">CAT II minimum</source>
+        <target xml:space="preserve">CAT II asgari</target>
+      </trans-unit>
+      <trans-unit id="weather-scenarios/core-high-pressure-region-desc:0" approved="yes">
+        <source xml:space="preserve">The center of a high pressure region, characterized by descending air and hence only weak cloud development with high visibility.</source>
+        <target xml:space="preserve">Alçalan hava ve dolayısıyla yalnızca yüksek görünürlükte zayıf bulut gelişimi ile karakterize edilen yüksek basınç bölgesinin merkezi.</target>
+      </trans-unit>
+      <trans-unit id="weather-scenarios/core-high-pressure-region-name:0" approved="yes">
+        <source xml:space="preserve">Core high pressure region</source>
+        <target xml:space="preserve">Çekirdek yüksek basınç bölgesi</target>
+      </trans-unit>
+      <trans-unit id="weather-scenarios/core-low-pressure-region-desc:0" approved="yes">
+        <source xml:space="preserve">The core of a low pressure region, characterized by overcast clouds, bad visibility on the ground and significant rainfall.</source>
+        <target xml:space="preserve">Bulutlu bulutlar, zeminde kötü görüş ve önemli yağış ile karakterize edilen alçak basınç bölgesinin çekirdeği.</target>
+      </trans-unit>
+      <trans-unit id="weather-scenarios/core-low-pressure-region-name:0" approved="yes">
+        <source xml:space="preserve">Core low pressure region</source>
+        <target xml:space="preserve">Çekirdek alçak basınç bölgesi</target>
+      </trans-unit>
+      <trans-unit id="weather-scenarios/early-morning-fog-desc:0" approved="yes">
+        <source xml:space="preserve">Fog developed this autumn&apos;s morning. Expect good visibility above the layer. However - getting through it can be a challenge. Stay alive for a 500&apos; climb and you&apos;ll see the sun!</source>
+        <target xml:space="preserve">Sis bu sonbahar sabahı gelişti. Katmanın üzerinde iyi bir görünürlük bekleyin. Ancak - üstesinden gelmek zor olabilir. 500&apos; tırmanış için hayatta kalın ve güneşi göreceksiniz!</target>
+      </trans-unit>
+      <trans-unit id="weather-scenarios/early-morning-fog-name:0" approved="yes">
+        <source xml:space="preserve">Early morning fog</source>
+        <target xml:space="preserve">Sabah erken sis</target>
+      </trans-unit>
+      <trans-unit id="weather-scenarios/fair-weather-desc:0" approved="yes">
+        <source xml:space="preserve">A lovely day for trip to your favorite 100$ hamburger airfield</source>
+        <target xml:space="preserve">En sevdiğiniz 100₺&apos;lİk hamburger havaalanına gezi için güzel bir gün</target>
+      </trans-unit>
+      <trans-unit id="weather-scenarios/fair-weather-name:0" approved="yes">
+        <source xml:space="preserve">Fair weather</source>
+        <target xml:space="preserve">Güzel hava</target>
+      </trans-unit>
+      <trans-unit id="weather-scenarios/high-pressure-region-desc:0" approved="yes">
+        <source xml:space="preserve">A high pressure region, characterized by moderate to strong Cumulus development in the afternoon and fairly good visibility conditions.</source>
+        <target xml:space="preserve">Öğleden sonra orta ila güçlü kümülüs gelişimi ve oldukça iyi görüş koşulları ile karakterize edilen yüksek basınç bölgesi.</target>
+      </trans-unit>
+      <trans-unit id="weather-scenarios/high-pressure-region-name:0" approved="yes">
+        <source xml:space="preserve">High pressure region</source>
+        <target xml:space="preserve">Yüksek basınç bölgesi</target>
+      </trans-unit>
+      <trans-unit id="weather-scenarios/live-data-desc:0" approved="yes">
+        <source xml:space="preserve">Fetch live weather data for your nearest airport from noaa.gov. You need a working internet connection. Weather is generated automatically, once a valid METAR is received.</source>
+        <target xml:space="preserve">noaa.gov&apos;dan size en yakın havaalanı için canlı hava durumu verilerini alın. Çalışan bir internet bağlantısına ihtiyacınız var. Geçerli bir METAR alındığında hava durumu otomatik olarak oluşturulur.</target>
+      </trans-unit>
+      <trans-unit id="weather-scenarios/live-data-name:0" approved="yes">
+        <source xml:space="preserve">Live data</source>
+        <target xml:space="preserve">Canlı veri</target>
+      </trans-unit>
+      <trans-unit id="weather-scenarios/low-pressure-region-desc:0" approved="yes">
+        <source xml:space="preserve">A low pressure region, characterized by rising air, widespread formation of stratiform clouds and beginning rain.</source>
+        <target xml:space="preserve">Yükselen hava, yaygın olarak tabakalı bulut oluşumu ve başlayan yağmur ile karakterize edilen bir alçak basınç bölgesi.</target>
+      </trans-unit>
+      <trans-unit id="weather-scenarios/low-pressure-region-name:0" approved="yes">
+        <source xml:space="preserve">Low pressure region</source>
+        <target xml:space="preserve">Alçak basınç bölgesi</target>
+      </trans-unit>
+      <trans-unit id="weather-scenarios/manual-input-desc:0" approved="yes">
+        <source xml:space="preserve">Enter your favorite METAR weather. A valid METAR syntax is required.</source>
+        <target xml:space="preserve">En sevdiğiniz METAR hava durumunu girin. Geçerli bir METAR sözdizimi gereklidir.</target>
+      </trans-unit>
+      <trans-unit id="weather-scenarios/manual-input-name:0" approved="yes">
+        <source xml:space="preserve">Manual input</source>
+        <target xml:space="preserve">Elle giriş</target>
+      </trans-unit>
+      <trans-unit id="weather-scenarios/marginal-vfr-desc:0" approved="yes">
+        <source xml:space="preserve">After the storm - limited visibility and some showers. Go or No-Go?</source>
+        <target xml:space="preserve">Fırtınadan sonra - sınırlı görüş ve biraz sağanak. Git veya Gitme?</target>
+      </trans-unit>
+      <trans-unit id="weather-scenarios/marginal-vfr-name:0" approved="yes">
+        <source xml:space="preserve">Marginal VFR</source>
+        <target xml:space="preserve">Marjinal VFR</target>
+      </trans-unit>
+      <trans-unit id="weather-scenarios/stormy-monday-desc:0" approved="yes">
+        <source xml:space="preserve">You&apos;re out for an adventure? Gusty winds blowing from the west and isolated thunderstorms should be avoided. Fasten your seatbelt!</source>
+        <target xml:space="preserve">Bir maceraya mı çıktınız? Batıdan esen sert rüzgarlardan ve izole gök gürültülü fırtınalardan kaçınılmalıdır. Emniyet kemerini bağla!</target>
+      </trans-unit>
+      <trans-unit id="weather-scenarios/stormy-monday-name:0" approved="yes">
+        <source xml:space="preserve">Stormy Monday</source>
+        <target xml:space="preserve">Fırtınalı pazartesi</target>
+      </trans-unit>
+      <trans-unit id="weather-scenarios/thunderstorm-desc:0" approved="yes">
+        <source xml:space="preserve">A hot and damp summer day with thunderstorms developing in the afternoon. Be prepared for reduction of visibility in showers and strong gusts near thunderstorms</source>
+        <target xml:space="preserve">Öğleden sonra gök gürültülü sağanak yağışlı, sıcak ve nemli bir yaz günü. Sağanak ve gök gürültülü sağanak yağışlarda görünürlüğün azalmasına hazırlıklı olun</target>
+      </trans-unit>
+      <trans-unit id="weather-scenarios/thunderstorm-name:0" approved="yes">
+        <source xml:space="preserve">Thunderstorm</source>
+        <target xml:space="preserve">Fırtına</target>
+      </trans-unit>
+      <trans-unit id="weather-scenarios/warm-sector-desc:0" approved="yes">
+        <source xml:space="preserve">A warm sector, characterized by high moisture in the air and haze extending up to high altitudes, but otherwise largely convective cloud development.</source>
+        <target xml:space="preserve">Havadaki yüksek nem ve yüksek irtifalara kadar uzanan pus, ancak bunun dışında büyük ölçüde konvektif bulut gelişimi ile karakterize edilen sıcak bir bölge.</target>
+      </trans-unit>
+      <trans-unit id="weather-scenarios/warm-sector-name:0" approved="yes">
+        <source xml:space="preserve">Warm sector</source>
+        <target xml:space="preserve">Sıcak bölge</target>
+      </trans-unit>
+    </group>
+  </body></file>
+</xliff>

From fcbbe4b3abbb7aa0db817196e849dd4491ad2cc9 Mon Sep 17 00:00:00 2001
From: Florent Rougon <f.rougon@frougon.net>
Date: Tue, 3 May 2022 14:14:51 +0200
Subject: [PATCH 6/6] i18n: update Turkish translation for 'next'
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

Translation provided by Serkan ÖNDER. The previous commit had the
translations for 2020.3, my mistake.
---
 Translations/tr/FlightGear-Qt.xlf    | 2759 +++++++++++++-------------
 Translations/tr/FlightGear-nonQt.xlf |  456 ++++-
 2 files changed, 1831 insertions(+), 1384 deletions(-)

diff --git a/Translations/tr/FlightGear-Qt.xlf b/Translations/tr/FlightGear-Qt.xlf
index 0754c9d60..73161ae5b 100644
--- a/Translations/tr/FlightGear-Qt.xlf
+++ b/Translations/tr/FlightGear-Qt.xlf
@@ -1,119 +1,136 @@
 <?xml version="1.0" encoding="utf-8"?>
 <xliff version="1.2" xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:trolltech="urn:trolltech:names:ts:document:1.0">
-  <file original="" datatype="plaintext" source-language="en" target-language="tr"><body>
+  <file original="/home/devel/FGFS/flightgear/src/GUI/InstallSceneryDialog.ui" datatype="x-trolltech-designer-ui" source-language="en" target-language="tr"><body>
     <group restype="x-trolltech-linguist-context" resname="InstallSceneryDialog">
       <trans-unit id="_msg1" approved="yes">
         <source xml:space="preserve">Install scenery</source>
         <target xml:space="preserve">Manzarayı yükle</target>
+        <context-group purpose="location"><context context-type="linenumber">14</context></context-group>
       </trans-unit>
       <trans-unit id="_msg2" approved="yes">
         <source xml:space="preserve">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;The easiest way to automatically install scenery is to use TerraSync. If you prefer to download and install scenery manually, you can use this dialog to extract and install the files in the correct place. (&lt;a href=&quot;http://ns334561.ip-5-196-65.eu/~fgscenery/WS2.0/scenery-2.0.1.html&quot;&gt;&lt;span style=&quot; text-decoration: underline; color:#0000ff;&quot;&gt;Click here to download scenery&lt;/span&gt;&lt;/a&gt;)&lt;/p&gt;&lt;p&gt;Files will be extracted and installed to a &apos;Scenery&apos; folder inside your chosen downloads location (currently %1), after which you can delete the archives if you wish.&lt;/p&gt;&lt;p&gt;To begin, click &apos;Next&apos; and select one or more downloaded scenery archives, which have names such as &apos;w010n40.tar.gz&apos;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
         <target xml:space="preserve">&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Manzarayı otomatik olarak kurmanın en kolay yolu TerraSync kullanmaktır. Manzarayı el ile indirip yüklemeyi tercih ederseniz, dosyaları doğru yere ayıklamak ve yüklemek için bu iletişim kutusunu kullanabilirsiniz. (&lt;a href=&quot;http://ns334561.ip-5-196-65.eu/~fgscenery/WS2.0/scenery-2.0.1.html&quot;&gt;&lt;span style=&quot; text-decoration: underline; color:#0000ff;&quot;&gt;Manzara dosyasını indirmek için buraya tıklayın&lt;/span&gt;&lt;/a&gt;)&lt;/p&gt;&lt;p&gt;Dosyalar ayıklanacak ve seçtiğiniz indirme konumunun içindeki bir &apos;Scenery&apos; klasörüne yüklenecek (şu anda %1), daha sonra isterseniz arşivleri silebilirsiniz.&lt;/p&gt;&lt;p&gt;Başlamak için &apos;İleri&apos; ye tıklayın ve &apos;w010n40.tar.gz&apos; gibi adlara sahip bir veya daha fazla indirilen manzara arşivi seçin.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</target>
+        <context-group purpose="location"><context context-type="linenumber">31</context></context-group>
       </trans-unit>
       <trans-unit id="_msg3" approved="yes">
         <source xml:space="preserve">Please wait, verifying and extracting scenery...</source>
         <target xml:space="preserve">Lütfen bekleyin, sahne doğrulanıyor ve çıkarılıyor...</target>
+        <context-group purpose="location"><context context-type="linenumber">67</context></context-group>
       </trans-unit>
       <trans-unit id="_msg4" approved="yes">
         <source xml:space="preserve">TextLabel</source>
         <target xml:space="preserve">MetinEtiketi</target>
+        <context-group purpose="location"><context context-type="linenumber">87</context></context-group>
       </trans-unit>
       <trans-unit id="_msg5" approved="yes">
         <source xml:space="preserve">Successfully installed the scenery files to &apos;%1&apos;. This location will be added to the list of additional sceneries to be used.</source>
         <target xml:space="preserve">Manzara dosyaları başarıyla &apos;%1&apos; konumuna yüklendi. Bu konum, kullanılacak ek sahneler listesine eklenecektir.</target>
-      </trans-unit>
-    </group>
-    <group restype="x-trolltech-linguist-context" resname="SetupRootDialog">
-      <trans-unit id="_msg6" approved="yes">
-        <source xml:space="preserve">Setup required data files</source>
-        <target xml:space="preserve">Gerekli veri dosyalarını ayarlayın</target>
-      </trans-unit>
-      <trans-unit id="_msg7" approved="yes">
-        <source xml:space="preserve">TextLabel</source>
-        <target xml:space="preserve">Metin Etiketi</target>
-      </trans-unit>
-      <trans-unit id="_msg8" approved="yes">
-        <source xml:space="preserve">FlightGear version 3.4.5</source>
-        <target xml:space="preserve">FlightGear 3.4.5 sürümü</target>
-      </trans-unit>
-      <trans-unit id="_msg9" approved="yes">
-        <source xml:space="preserve">Use built-in data files</source>
-        <target xml:space="preserve">Yerleşik veri dosyalarını kullanın</target>
-      </trans-unit>
-      <trans-unit id="_msg10" approved="yes">
-        <source xml:space="preserve">Download </source>
-        <target xml:space="preserve">İndir </target>
-      </trans-unit>
-      <trans-unit id="_msg11" approved="yes">
-        <source xml:space="preserve">Replace me</source>
-        <target xml:space="preserve">Beni değiştirin</target>
-      </trans-unit>
-      <trans-unit id="_msg12" approved="yes">
-        <source xml:space="preserve">Choose folder...</source>
-        <target xml:space="preserve">Dizin Seç...</target>
-      </trans-unit>
-      <trans-unit id="_msg13" approved="yes">
-        <source xml:space="preserve">To use the files included with this copy of FlightGear, click this button</source>
-        <target xml:space="preserve">FlightGear&apos;ın bu kopyasında bulunan dosyaları kullanmak için bu düğmeye tıklayın</target>
-      </trans-unit>
-      <trans-unit id="_msg14" approved="yes">
-        <source xml:space="preserve">To download a compressed archive of the files, click the &apos;Download&apos; button. Once the download is complete, extract the files to a suitable location and choose the folder using the button above.</source>
-        <target xml:space="preserve">Dosyaların sıkıştırılmış bir arşivini indirmek için &apos;İndir&apos; düğmesini tıklayın. İndirme işlemi tamamlandıktan sonra dosyaları uygun bir konuma çıkarın ve yukarıdaki düğmeyi kullanarak klasörü seçin.</target>
-      </trans-unit>
-      <trans-unit id="_msg15" approved="yes">
-        <source xml:space="preserve">To browse to a downloaded copy of the files on your computer, click this button</source>
-        <target xml:space="preserve">Bilgisayarınızdaki dosyaların indirilmiş bir kopyasına göz atmak için bu düğmeyi tıklayın</target>
+        <context-group purpose="location"><context context-type="linenumber">121</context></context-group>
       </trans-unit>
     </group>
   </body></file>
   <file original="/home/devel/FGFS/flightgear/src/GUI/InstallSceneryDialog.cxx" datatype="cpp" source-language="en" target-language="tr"><body>
     <group restype="x-trolltech-linguist-context" resname="InstallSceneryDialog">
-      <trans-unit id="_msg16" approved="yes">
+      <trans-unit id="_msg6" approved="yes">
         <source xml:space="preserve">Next</source>
         <target xml:space="preserve">Sonraki</target>
-        <context-group purpose="location"><context context-type="linenumber">189</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">190</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg17" approved="yes">
+      <trans-unit id="_msg7" approved="yes">
         <source xml:space="preserve">Extracting</source>
         <target xml:space="preserve">Ayıklanıyor</target>
-        <context-group purpose="location"><context context-type="linenumber">196</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">197</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg18" approved="yes">
+      <trans-unit id="_msg8" approved="yes">
         <source xml:space="preserve">Okay</source>
         <target xml:space="preserve">Tamam</target>
-        <context-group purpose="location"><context context-type="linenumber">209</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">210</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg19" approved="yes">
+      <trans-unit id="_msg9" approved="yes">
         <source xml:space="preserve">Choose scenery to install</source>
         <target xml:space="preserve">Yüklemek için manzara seçin</target>
-        <context-group purpose="location"><context context-type="linenumber">247</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">248</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg20" approved="yes">
+      <trans-unit id="_msg10" approved="yes">
         <source xml:space="preserve">Problems occured extracting the archive &apos;%1&apos;: %2</source>
         <target xml:space="preserve">&apos;%1&apos; arşivi çıkarılırken sorunlar oluştu: %2</target>
-        <context-group purpose="location"><context context-type="linenumber">281</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">282</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg21" approved="yes">
+      <trans-unit id="_msg11" approved="yes">
         <source xml:space="preserve">Extracting %1</source>
         <target xml:space="preserve">%1 Ayıklanıyor</target>
-        <context-group purpose="location"><context context-type="linenumber">293</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">294</context></context-group>
       </trans-unit>
     </group>
     <group restype="x-trolltech-linguist-context" resname="InstallSceneryThread">
-      <trans-unit id="_msg22" approved="yes">
+      <trans-unit id="_msg12" approved="yes">
         <source xml:space="preserve">scenery archive name is not correct.</source>
         <target xml:space="preserve">manzara arşivi adı doğru değil.</target>
-        <context-group purpose="location"><context context-type="linenumber">82</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">83</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg23" approved="yes">
+      <trans-unit id="_msg13" approved="yes">
         <source xml:space="preserve">file does not appear to be a scenery archive.</source>
         <target xml:space="preserve">dosya bir manzara arşivi gibi görünmüyor.</target>
-        <context-group purpose="location"><context context-type="linenumber">93</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">94</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg24" approved="yes">
+      <trans-unit id="_msg14" approved="yes">
         <source xml:space="preserve">unarchiving failed</source>
         <target xml:space="preserve">arşivden çıkarma başarısız</target>
-        <context-group purpose="location"><context context-type="linenumber">142</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">143</context></context-group>
+      </trans-unit>
+    </group>
+  </body></file>
+  <file original="/home/devel/FGFS/flightgear/src/GUI/SetupRootDialog.ui" datatype="x-trolltech-designer-ui" source-language="en" target-language="tr"><body>
+    <group restype="x-trolltech-linguist-context" resname="SetupRootDialog">
+      <trans-unit id="_msg15" approved="yes">
+        <source xml:space="preserve">Setup required data files</source>
+        <target xml:space="preserve">Gerekli veri dosyalarını ayarlayın</target>
+        <context-group purpose="location"><context context-type="linenumber">17</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg16" approved="yes">
+        <source xml:space="preserve">TextLabel</source>
+        <target xml:space="preserve">Metin Etiketi</target>
+        <context-group purpose="location"><context context-type="linenumber">46</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg17" approved="yes">
+        <source xml:space="preserve">FlightGear version 3.4.5</source>
+        <target xml:space="preserve">FlightGear 3.4.5 sürümü</target>
+        <context-group purpose="location"><context context-type="linenumber">63</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg18" approved="yes">
+        <source xml:space="preserve">Use built-in data files</source>
+        <target xml:space="preserve">Yerleşik veri dosyalarını kullanın</target>
+        <context-group purpose="location"><context context-type="linenumber">70</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg19" approved="yes">
+        <source xml:space="preserve">Download </source>
+        <target xml:space="preserve">İndir </target>
+        <context-group purpose="location"><context context-type="linenumber">77</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg20" approved="yes">
+        <source xml:space="preserve">Replace me</source>
+        <target xml:space="preserve">Beni değiştirin</target>
+        <context-group purpose="location"><context context-type="linenumber">90</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg21" approved="yes">
+        <source xml:space="preserve">Choose folder...</source>
+        <target xml:space="preserve">Dizin Seç...</target>
+        <context-group purpose="location"><context context-type="linenumber">103</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg22" approved="yes">
+        <source xml:space="preserve">To use the files included with this copy of FlightGear, click this button</source>
+        <target xml:space="preserve">FlightGear&apos;ın bu kopyasında bulunan dosyaları kullanmak için bu düğmeye tıklayın</target>
+        <context-group purpose="location"><context context-type="linenumber">113</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg23" approved="yes">
+        <source xml:space="preserve">To download a compressed archive of the files, click the &apos;Download&apos; button. Once the download is complete, extract the files to a suitable location and choose the folder using the button above.</source>
+        <target xml:space="preserve">Dosyaların sıkıştırılmış bir arşivini indirmek için &apos;İndir&apos; düğmesini tıklayın. İndirme işlemi tamamlandıktan sonra dosyaları uygun bir konuma çıkarın ve yukarıdaki düğmeyi kullanarak klasörü seçin.</target>
+        <context-group purpose="location"><context context-type="linenumber">123</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg24" approved="yes">
+        <source xml:space="preserve">To browse to a downloaded copy of the files on your computer, click this button</source>
+        <target xml:space="preserve">Bilgisayarınızdaki dosyaların indirilmiş bir kopyasına göz atmak için bu düğmeyi tıklayın</target>
+        <context-group purpose="location"><context context-type="linenumber">133</context></context-group>
       </trans-unit>
     </group>
   </body></file>
@@ -122,42 +139,42 @@
       <trans-unit id="_msg25" approved="yes">
         <source xml:space="preserve">FlightGear version %1</source>
         <target xml:space="preserve">FlightGear sürümü %1</target>
-        <context-group purpose="location"><context context-type="linenumber">72</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">71</context></context-group>
       </trans-unit>
       <trans-unit id="_msg26" approved="yes">
         <source xml:space="preserve">Choose FlightGear data folder</source>
         <target xml:space="preserve">FlightGear veri klasörünü seçin</target>
-        <context-group purpose="location"><context context-type="linenumber">198</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">197</context></context-group>
       </trans-unit>
       <trans-unit id="_msg27" approved="yes">
         <source xml:space="preserve">This copy of FlightGear does not include the base data files. Please select a suitable folder containing a previously download set of files.</source>
         <target xml:space="preserve">FlightGear&apos;ın bu kopyası temel veri dosyalarını içermez. Lütfen önceden indirilmiş bir dizi dosya içeren uygun bir klasör seçin.</target>
-        <context-group purpose="location"><context context-type="linenumber">247</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">246</context></context-group>
       </trans-unit>
       <trans-unit id="_msg28" approved="yes">
         <source xml:space="preserve">The requested location &apos;%1&apos; does not appear to be a valid set of data files for FlightGear</source>
         <target xml:space="preserve">İstenen konum &apos;%1&apos; FlightGear için geçerli bir veri dosyası grubu gibi görünmüyor</target>
-        <context-group purpose="location"><context context-type="linenumber">252</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">251</context></context-group>
       </trans-unit>
       <trans-unit id="_msg29" approved="yes">
         <source xml:space="preserve">Detected incompatible version of the data files: version %1 found, but this is FlightGear %2. (At location: &apos;%3&apos;) Please install or select a matching set of data files.</source>
         <target xml:space="preserve">Veri dosyalarının uyumsuz sürümü algılandı: %1 sürümü bulundu, ancak bu FlightGear %2. (Konumda: &apos;%3&apos;) Lütfen eşleşen bir veri dosyası grubu kurun veya seçin.</target>
-        <context-group purpose="location"><context context-type="linenumber">258</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">257</context></context-group>
       </trans-unit>
       <trans-unit id="_msg30" approved="yes">
         <source xml:space="preserve">Please select or download a copy of the FlightGear data files.</source>
         <target xml:space="preserve">Lütfen FlightGear veri dosyalarının bir kopyasını seçin veya indirin.</target>
-        <context-group purpose="location"><context context-type="linenumber">265</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">264</context></context-group>
       </trans-unit>
       <trans-unit id="_msg31" approved="yes">
         <source xml:space="preserve">The choosen location (%1) does not appear to contain FlightGear data files. Please try another location.</source>
         <target xml:space="preserve">Seçilen konum (%1) FlightGear veri dosyalarını içermiyor gibi görünüyor. Lütfen başka bir konum deneyin.</target>
-        <context-group purpose="location"><context context-type="linenumber">269</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">268</context></context-group>
       </trans-unit>
       <trans-unit id="_msg32" approved="yes">
         <source xml:space="preserve">The choosen location (%1) contains files for version %2, but this is FlightGear %3. Please update or try another location</source>
         <target xml:space="preserve">Seçilen konum (%1), %2 sürümü için dosyalar içeriyor, ancak bu, FlightGear %3. Lütfen güncelleyin veya başka bir konum deneyin</target>
-        <context-group purpose="location"><context context-type="linenumber">275</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">274</context></context-group>
       </trans-unit>
     </group>
   </body></file>
@@ -274,168 +291,680 @@
 &lt;li&gt;&lt;a %3&gt;anahtar komutları başvurusu&lt;/a&gt;&lt;/li&gt;
 &lt;li&gt;&lt;a %4&gt;wikimiz&lt;/a&gt; (SSS&apos;ları içerir)&lt;/li&gt;
 &lt;/ul&gt;&lt;/p&gt;</target>
-        <context-group purpose="location"><context context-type="linenumber">39</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">41</context></context-group>
       </trans-unit>
       <trans-unit id="_msg50" approved="yes">
         <source xml:space="preserve">&lt;p&gt;For help using this launcher, &lt;a %1&gt;try enabling the getting started hints&lt;/a&gt;.&lt;/p&gt;
 </source>
         <target xml:space="preserve">&lt;p&gt;Bu başlatıcıyı kullanma konusunda yardım için &lt;a %1&gt;başlangıç ipuçlarını etkinleştirmeyi deneyin&lt;/a&gt;.&lt;/p&gt;
 </target>
-        <context-group purpose="location"><context context-type="linenumber">63</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">65</context></context-group>
       </trans-unit>
       <trans-unit id="_msg51" approved="yes">
         <source xml:space="preserve">&lt;p&gt;If you find an issue, please use &lt;a %1&gt;our help forum&lt;/a&gt;.&lt;/p&gt;
 </source>
         <target xml:space="preserve">&lt;p&gt;Bir sorun bulursanız, lütfen &lt;a %1&gt;yardım forumumuzu&lt;/a&gt; kullanın.&lt;/p&gt;
 </target>
-        <context-group purpose="location"><context context-type="linenumber">77</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">79</context></context-group>
       </trans-unit>
       <trans-unit id="_msg52" approved="yes">
         <source xml:space="preserve">&lt;p&gt;FlightGear is the result of twenty-five years of work by hundreds of contributors around the world. We&apos;d be delighted if you would join us.&lt;/p&gt;
 </source>
         <target xml:space="preserve">&lt;p&gt;FlightGear, dünya çapında yüzlerce katılımcının yirmi beş yıllık çalışmasının sonucudur. Bize katılırsanız çok seviniriz.&lt;/p&gt;
 </target>
-        <context-group purpose="location"><context context-type="linenumber">90</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">92</context></context-group>
+      </trans-unit>
+    </group>
+  </body></file>
+  <file original="" datatype="plaintext" source-language="en" target-language="tr"><body>
+    <group restype="x-trolltech-linguist-context" resname="SettingExtraArguments">
+      <trans-unit id="_msg53" translate="no" approved="yes">
+        <source xml:space="preserve">Enter additional command-line arguments if any are required. See &lt;a href=&quot;http://flightgear.sourceforge.net/manual/2020.3/en/getstart-ench4.html#x8-330004.4&quot;&gt;documentation&lt;/a&gt; for possible arguments. &lt;br&gt;&lt;b&gt;Warning:&lt;/b&gt; values entered here always override other settings; &lt;a href=&quot;#view-command-line&quot;&gt;click here&lt;/a&gt; to view the final set of arguments that will be used</source>
+        <target xml:space="preserve">Gerekirse ek komut satırı bağımsız değişkenleri girin. Olası argümanlar için &lt;a href=&quot;http://flightgear.sourceforge.net/manual/2020.3/en/getstart-ench4.html#x8-330004.4&quot;&gt;belgelere&lt;/a&gt; bakın. &lt;br&gt;&lt;b&gt;Uyarı:&lt;/b&gt; buraya girilen değerler her zaman diğer ayarları geçersiz kılar; Kullanılacak argümanların son kümesini görüntülemek için &lt;a href=&quot;#view-command-line&quot;&gt;burayı tıklayın&lt;/a&gt;</target>
+        <note annotates="source" from="developer">The “getstart” manual has translations. For languages listed in $ALL_LANGUAGES at &lt;https://sourceforge.net/p/flightgear/getstart/ci/next/tree/bin/makegetstart.sh&gt;, replace *both* occurrences of “en” in the URL with the appropriate language code from $ALL_LANGUAGES. And please test the modified URL before validating the translation. :-)</note>
+      </trans-unit>
+    </group>
+    <group restype="x-trolltech-linguist-context" resname="Environment">
+      <trans-unit id="_msg54" translate="no" approved="yes">
+        <source xml:space="preserve">Season</source>
+        <target xml:space="preserve">Sezon</target>
+      </trans-unit>
+      <trans-unit id="_msg55" translate="no" approved="yes">
+        <source xml:space="preserve">Select if normal (summer) or winter textures are used for the scenery. This does not affect other aspects of the simulation at present, such as icing or weather simulation</source>
+        <target xml:space="preserve">Manzara için normal (yaz) veya kış dokularının kullanılıp kullanılmayacağını seçin. Bu, şu anda simülasyonun buzlanma veya hava durumu simülasyonu gibi diğer yönlerini etkilemez</target>
+      </trans-unit>
+      <trans-unit id="_msg56" translate="no" approved="yes">
+        <source xml:space="preserve">Summer (default)</source>
+        <target xml:space="preserve">Yaz (varsayılan)</target>
+      </trans-unit>
+      <trans-unit id="_msg57" translate="no" approved="yes">
+        <source xml:space="preserve">Winter</source>
+        <target xml:space="preserve">Kış</target>
+      </trans-unit>
+    </group>
+    <group restype="x-trolltech-linguist-context" resname="Settings">
+      <trans-unit id="_msg58" translate="no" approved="yes">
+        <source xml:space="preserve">Rembrandt</source>
+        <target xml:space="preserve">Rembrandt</target>
+      </trans-unit>
+      <trans-unit id="_msg59" translate="no" approved="yes">
+        <source xml:space="preserve">ALS</source>
+        <target xml:space="preserve">ALS</target>
+      </trans-unit>
+      <trans-unit id="_msg60" translate="no" approved="yes">
+        <source xml:space="preserve">Default</source>
+        <target xml:space="preserve">Öntanımlı</target>
+      </trans-unit>
+      <trans-unit id="_msg61" translate="no" approved="yes">
+        <source xml:space="preserve">Atmospheric Light Scattering</source>
+        <target xml:space="preserve">Atmosferik Işık Saçılımı</target>
+      </trans-unit>
+      <trans-unit id="_msg62" translate="no" approved="yes">
+        <source xml:space="preserve">Low-spec</source>
+        <target xml:space="preserve">Düşük özellikli</target>
+      </trans-unit>
+      <trans-unit id="_msg63" translate="no" approved="yes">
+        <source xml:space="preserve">The default renderer provides standard visuals with maximum compatibility.</source>
+        <target xml:space="preserve">Varsayılan oluşturucu, azami uyumlulukla standart görseller sağlar.</target>
+      </trans-unit>
+      <trans-unit id="_msg64" translate="no" approved="yes">
+        <source xml:space="preserve">The ALS renderer uses a sophisticated physical atmospheric model and several other effects to give realistic rendering of large distances.</source>
+        <target xml:space="preserve">ALS oluşturucu, büyük mesafelerin gerçekçi görüntülenmesini sağlamak için gelişmiş bir fiziksel atmosferik model ve birkaç başka efekt kullanır.</target>
+      </trans-unit>
+      <trans-unit id="_msg65" translate="no" approved="yes">
+        <source xml:space="preserve">Rembrandt is a configurable multi-pass renderer which supports shadow-maps, cinematic effects and more. However, not all aircraft appear correctly and performance will depend greatly on your system hardware.</source>
+        <target xml:space="preserve">Rembrandt, gölge haritalarını, sinematik efektleri ve daha fazlasını destekleyen, yapılandırılabilir bir çok geçişli oluşturucudur. Ancak, tüm uçaklar doğru görünmüyor ve performans büyük ölçüde sistem donanımınıza bağlı olacaktır.</target>
+      </trans-unit>
+      <trans-unit id="_msg66" translate="no" approved="yes">
+        <source xml:space="preserve">The low-spec renderer ensures maximum performance on older computers.</source>
+        <target xml:space="preserve">Düşük özellikli oluşturucu, eski bilgisayarlarda maksimum performans sağlar.</target>
+      </trans-unit>
+      <trans-unit id="_msg67" translate="no" approved="yes">
+        <source xml:space="preserve">Renderer</source>
+        <target xml:space="preserve">Oluşturucu</target>
+      </trans-unit>
+      <trans-unit id="_msg68" translate="no" approved="yes">
+        <source xml:space="preserve">Anti-aliasing is disabled when Rembrandt is enabled.</source>
+        <target xml:space="preserve">Rembrandt etkinleştirildiğinde kenar yumuşatma devre dışı bırakılır.</target>
+      </trans-unit>
+    </group>
+    <group restype="x-trolltech-linguist-context" resname="AddOnsController">
+      <trans-unit id="_msg69" translate="no" approved="yes">
+        <source xml:space="preserve">Added scenery should contain at least one of the following folders: Objects, Terrain, Buildings, Roads, Pylons, NavData, Airports.</source>
+        <target xml:space="preserve">Eklenen manzara şu klasörlerden en az birini içermelidir: Objects, Terrain, Buildings, Roads, Pylons, NavData, Airports.</target>
       </trans-unit>
     </group>
   </body></file>
   <file original="/home/devel/FGFS/flightgear/src/GUI/qml/SettingExtraArguments.qml" datatype="plaintext" source-language="en" target-language="tr"><body>
     <group restype="x-trolltech-linguist-context" resname="SettingExtraArguments">
-      <trans-unit id="_msg53" approved="yes">
-        <source xml:space="preserve">Enter additional command-line arguments if any are required. See &lt;a href=&quot;http://flightgear.sourceforge.net/manual/2020.3/en/getstart-ench4.html#x8-330004.4&quot;&gt;documentation&lt;/a&gt; for possible arguments. &lt;br&gt;&lt;b&gt;Warning:&lt;/b&gt; values entered here always override other settings; &lt;a href=&quot;#view-command-line&quot;&gt;click here&lt;/a&gt; to view the final set of arguments that will be used</source>
-        <target xml:space="preserve">Gerekirse ek komut satırı bağımsız değişkenleri girin. Olası argümanlar için &lt;a href=&quot;http://flightgear.sourceforge.net/manual/2020.3/en/getstart-ench4.html#x8-330004.4&quot;&gt;belgelere&lt;/a&gt; bakın. &lt;br&gt;&lt;b&gt;Uyarı:&lt;/b&gt; buraya girilen değerler her zaman diğer ayarları geçersiz kılar; Kullanılacak argümanların son kümesini görüntülemek için &lt;a href=&quot;#view-command-line&quot;&gt;burayı tıklayın&lt;/a&gt;</target>
+      <trans-unit id="_msg70" approved="yes">
+        <source xml:space="preserve">Enter additional command-line arguments if any are required. See &lt;a href=&quot;http://flightgear.sourceforge.net/manual/next/en/getstart-ench4.html#x8-330004.4&quot;&gt;documentation&lt;/a&gt; for possible arguments. &lt;br&gt;&lt;b&gt;Warning:&lt;/b&gt; values entered here always override other settings; see the &lt;a href=&quot;#view-command-line&quot;&gt;final set of arguments&lt;/a&gt; that will be used.</source>
+        <target xml:space="preserve">Gerekirse ek komut satırı bağımsız değişkenleri girin. Olası argümanlar için &lt;a href=&quot;http://flightgear.sourceforge.net/manual/next/en/getstart-ench4.html#x8-330004.4&quot;&gt;belgelere&lt;/a&gt; bakın. &lt;br&gt;&lt;b&gt;Uyarı:&lt;/b&gt; buraya girilen değerler her zaman diğer ayarları geçersiz kılar; kullanılacak &lt;a href=&quot;#view-command-line&quot;&gt;son argüman kümesine&lt;/a&gt; bakın.</target>
         <context-group purpose="location"><context context-type="linenumber">28</context></context-group>
         <note annotates="source" from="developer">The “getstart” manual has translations. For languages listed in $ALL_LANGUAGES at &lt;https://sourceforge.net/p/flightgear/getstart/ci/next/tree/bin/makegetstart.sh&gt;, replace *both* occurrences of “en” in the URL with the appropriate language code from $ALL_LANGUAGES. And please test the modified URL before validating the translation. :-)</note>
       </trans-unit>
-      <trans-unit id="_msg54" approved="yes">
+      <trans-unit id="_msg71" approved="yes">
         <source xml:space="preserve">&lt;b&gt;Warning:&lt;/b&gt; specifying &lt;tt&gt;fg-root&lt;/tt&gt;, &lt;tt&gt;fg-aircraft&lt;/tt&gt;, &lt;tt&gt;fg-scenery&lt;/tt&gt; or &lt;tt&gt;fg-home&lt;/tt&gt; using this section is not recommended, and may cause problem or prevent the simulator from running. Please use the add-ons page to setup scenery and aircrft directories, and the &apos;Select data files location&apos; menu item to change the root data directory.</source>
         <target xml:space="preserve">&lt;b&gt;Uyarı:&lt;/b&gt; Bu bölümü kullanarak &lt;tt&gt;fg-root&lt;/tt&gt;, &lt;tt&gt;fg-uçak&lt;/tt&gt;, &lt;tt&gt;fg-manzara&lt;/tt&gt; veya &lt;ttz&gt;fg-ev&lt;/tt&gt; belirtilmesi önerilmez ve soruna neden olabilir veya simülatörün çalışmasını engelleyebilir. Lütfen manzara ve uçak dizinlerini ayarlamak için eklentiler sayfasını ve kök veri dizinini değiştirmek için &apos;Veri dosyaları konumunu seçin&apos; menü öğesini kullanın.</target>
         <context-group purpose="location"><context context-type="linenumber">52</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg55" approved="yes">
+      <trans-unit id="_msg72" approved="yes">
         <source xml:space="preserve">&lt;b&gt;Note:&lt;/b&gt; you have entered arguments relating to the startup location below. To prevent problems caused by conflicting settings, the values entered on the location page (for example, airport or altitude) will be ignored.</source>
         <target xml:space="preserve">&lt;b&gt;Not:&lt;/b&gt; Başlangıç konumuyla ilgili argümanları aşağıya girdiniz. Çakışan ayarlardan kaynaklanan sorunları önlemek için konum sayfasına girilen değerler (örneğin, havaalanı veya rakım) yok sayılır.</target>
         <context-group purpose="location"><context context-type="linenumber">63</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg56" approved="yes">
+      <trans-unit id="_msg73" approved="yes">
         <source xml:space="preserve">&lt;b&gt;Note:&lt;/b&gt; you have entered arguments relating to the selected aircraft. To prevent problems caused by conflicting settings, the aircraft page will be ignored.</source>
         <target xml:space="preserve">&lt;b&gt;Not:&lt;/b&gt; seçilen uçakla ilgili argümanlar girdiniz. Çakışan ayarlardan kaynaklanan sorunları önlemek için uçak sayfası yok sayılır.</target>
         <context-group purpose="location"><context context-type="linenumber">73</context></context-group>
       </trans-unit>
     </group>
   </body></file>
-  <file original="/home/devel/FGFS/flightgear/src/GUI/qml/AddOns.qml" datatype="plaintext" source-language="en" target-language="tr"><body>
-    <group restype="x-trolltech-linguist-context" resname="AddOns">
-      <trans-unit id="_msg57" approved="yes">
-        <source xml:space="preserve">Aircraft hangars</source>
-        <target xml:space="preserve">Uçak hangarları</target>
-        <context-group purpose="location"><context context-type="linenumber">52</context></context-group>
+  <file original="/home/devel/FGFS/flightgear/src/GUI/qml/Environment.qml" datatype="plaintext" source-language="en" target-language="tr"><body>
+    <group restype="x-trolltech-linguist-context" resname="Environment">
+      <trans-unit id="_msg74" approved="yes">
+        <source xml:space="preserve">Time &amp; Date</source>
+        <target xml:space="preserve">Saat ve Tarih</target>
+        <context-group purpose="location"><context context-type="linenumber">33</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg58" approved="yes">
-        <source xml:space="preserve">Aircraft hangars are managed collections of aircraft, which can be downloaded, installed and updated inside FlightGear.</source>
-        <target xml:space="preserve">Uçak hangarları, FlightGear içinde indirilebilen, kurulabilen ve güncellenebilen, yönetilen uçak koleksiyonlarıdır.</target>
-        <context-group purpose="location"><context context-type="linenumber">53</context></context-group>
+      <trans-unit id="_msg75" approved="yes">
+        <source xml:space="preserve">Time of day</source>
+        <target xml:space="preserve">Günün zamanı</target>
+        <context-group purpose="location"><context context-type="linenumber">40</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg59" approved="yes">
-        <source xml:space="preserve">The official FlightGear aircraft hangar is not set up. To add it, click here.</source>
-        <target xml:space="preserve">Resmi FlightGear uçak hangarı kurulmadı. Eklemek için burayı tıklayın.</target>
-        <context-group purpose="location"><context context-type="linenumber">93</context></context-group>
+      <trans-unit id="_msg76" approved="yes">
+        <source xml:space="preserve">Select the time of day used when the simulator starts, or enter a custom date and time.</source>
+        <target xml:space="preserve">Simülatör başladığında kullanılan günün saatini seçin veya özel bir tarih ve saat girin.</target>
+        <context-group purpose="location"><context context-type="linenumber">41</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg60" approved="yes">
-        <source xml:space="preserve">Additional aircraft folders</source>
-        <target xml:space="preserve">Ek uçak klasörleri</target>
+      <trans-unit id="_msg77" approved="yes">
+        <source xml:space="preserve">Current time</source>
+        <target xml:space="preserve">Şimdiki zaman</target>
+        <context-group purpose="location"><context context-type="linenumber">43</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg78" approved="yes">
+        <source xml:space="preserve">Dawn</source>
+        <target xml:space="preserve">Şafak</target>
+        <context-group purpose="location"><context context-type="linenumber">43</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg79" approved="yes">
+        <source xml:space="preserve">Morning</source>
+        <target xml:space="preserve">Sabah</target>
+        <context-group purpose="location"><context context-type="linenumber">43</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg80" approved="yes">
+        <source xml:space="preserve">Noon</source>
+        <target xml:space="preserve">Öğle vakti</target>
+        <context-group purpose="location"><context context-type="linenumber">43</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg81" approved="yes">
+        <source xml:space="preserve">Afternoon</source>
+        <target xml:space="preserve">Öğleden sonra</target>
+        <context-group purpose="location"><context context-type="linenumber">44</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg82" approved="yes">
+        <source xml:space="preserve">Dusk</source>
+        <target xml:space="preserve">Alacakaranlık</target>
+        <context-group purpose="location"><context context-type="linenumber">44</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg83" approved="yes">
+        <source xml:space="preserve">Evening</source>
+        <target xml:space="preserve">Akşam</target>
+        <context-group purpose="location"><context context-type="linenumber">44</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg84" approved="yes">
+        <source xml:space="preserve">Midnight</source>
+        <target xml:space="preserve">Gece yarısı</target>
+        <context-group purpose="location"><context context-type="linenumber">45</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg85" approved="yes">
+        <source xml:space="preserve">Custom time &amp; date</source>
+        <target xml:space="preserve">Özel saat ve tarih</target>
+        <context-group purpose="location"><context context-type="linenumber">45</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">67</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg86" approved="yes">
+        <source xml:space="preserve">Enter a date and time to begin the flight at. By default this is in local time for the chosen starting location - use the option below to request a time in GMT / UTC.</source>
+        <target xml:space="preserve">Uçuşun başlayacağı tarih ve saati girin. Varsayılan olarak bu, seçilen başlangıç konumu için yerel saate göredir - GMT / UTC&apos;de bir saat istemek için aşağıdaki seçeneği kullanın.</target>
+        <context-group purpose="location"><context context-type="linenumber">69</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg87" approved="yes">
+        <source xml:space="preserve">Custom time is GMT / UTC</source>
+        <target xml:space="preserve">Özel zaman GMT / UTC&apos;dir</target>
+        <context-group purpose="location"><context context-type="linenumber">77</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg88" approved="yes">
+        <source xml:space="preserve">Weather</source>
+        <target xml:space="preserve">Hava Durumu</target>
+        <context-group purpose="location"><context context-type="linenumber">99</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg89" approved="yes">
+        <source xml:space="preserve">Advanced weather modelling</source>
+        <target xml:space="preserve">Gelişmiş hava durumu modellemesi</target>
+        <context-group purpose="location"><context context-type="linenumber">105</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg90" approved="yes">
+        <source xml:space="preserve">Detailed weather simulation based on local terrain and atmospheric simulation. Note that using advanced weather with real-world weather data (METAR) information may not show exactly the conditions recorded, and is not recommended for multi-player flight since the weather simulation is not shared over the network.</source>
+        <target xml:space="preserve">Yerel arazi ve atmosferik simülasyona dayalı ayrıntılı hava simülasyonu. Gelişmiş hava durumunu gerçek dünya hava durumu verileri (METAR) bilgileriyle kullanmanın, kaydedilen koşulları tam olarak göstermeyebileceğini ve hava durumu simülasyonu ağ üzerinden paylaşılmadığından çok oyunculu uçuş için önerilmediğini unutmayın.</target>
+        <context-group purpose="location"><context context-type="linenumber">106</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg91" approved="yes">
+        <source xml:space="preserve">Real-world weather</source>
+        <target xml:space="preserve">Gerçek dünya hava durumu</target>
         <context-group purpose="location"><context context-type="linenumber">116</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg61" approved="yes">
-        <source xml:space="preserve">To use aircraft you download yourself, FlightGear needs to know the folder(s) containing the aircraft data.</source>
-        <target xml:space="preserve">Kendi indirdiğiniz uçağı kullanmak için FlightGear&apos;ın uçak verilerini içeren klasörleri bilmesi gerekir.</target>
+      <trans-unit id="_msg92" approved="yes">
+        <source xml:space="preserve">Download real-world weather from the NOAA servers based on location.</source>
+        <target xml:space="preserve">Konuma göre NOAA sunucularından gerçek dünya hava durumunu indirin.</target>
         <context-group purpose="location"><context context-type="linenumber">117</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg62" approved="yes">
-        <source xml:space="preserve">Remove the aircraft folder: &apos;%1&apos; from the list? (The folder contents will not be changed)</source>
-        <target xml:space="preserve">Uçak klasörü &apos;%1&apos; listeden kaldırılsın mı? (Klasör içeriği değişmeyecek)</target>
-        <context-group purpose="location"><context context-type="linenumber">140</context></context-group>
+      <trans-unit id="_msg93" approved="yes">
+        <source xml:space="preserve">Weather scenario</source>
+        <target xml:space="preserve">Hava durumu senaryosu</target>
+        <context-group purpose="location"><context context-type="linenumber">125</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg63" approved="yes">
-        <source xml:space="preserve">No custom aircraft paths are configured.</source>
-        <target xml:space="preserve">Hiçbir özel uçak yolu yapılandırılmamış.</target>
+      <trans-unit id="_msg94" approved="yes">
+        <source xml:space="preserve">METAR</source>
+        <target xml:space="preserve">METAR</target>
+        <context-group purpose="location"><context context-type="linenumber">145</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg95" approved="yes">
+        <source xml:space="preserve">Enter a custom METAR string, e.g: &apos;%1&apos;</source>
+        <target xml:space="preserve">Özel bir METAR dizesi girin, örneğin: &apos;%1&apos;</target>
+        <context-group purpose="location"><context context-type="linenumber">149</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg96" approved="yes">
+        <source xml:space="preserve">The entered METAR string doesn&apos;t seem to be valid.</source>
+        <target xml:space="preserve">Girilen METAR dizesi geçerli görünmüyor.</target>
         <context-group purpose="location"><context context-type="linenumber">150</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg64" approved="yes">
-        <source xml:space="preserve">Add-on Module folders</source>
-        <target xml:space="preserve">Eklenti Modülü klasörleri</target>
-        <context-group purpose="location"><context context-type="linenumber">167</context></context-group>
+      <trans-unit id="_msg97" approved="yes">
+        <source xml:space="preserve">advanced weather</source>
+        <target xml:space="preserve">gelişmiş hava</target>
+        <context-group purpose="location"><context context-type="linenumber">218</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg65" approved="yes">
-        <source xml:space="preserve">To use Add-on Modules that you download yourself, FlightGear needs to know the folder(s) containing the Add-on Modules.</source>
-        <target xml:space="preserve">Kendi indirdiğiniz Eklenti Modüllerini kullanmak için FlightGear&apos;ın Eklenti Modüllerini içeren klasörleri bilmesi gerekir.</target>
+      <trans-unit id="_msg98" approved="yes">
+        <source xml:space="preserve">real-world weather</source>
+        <target xml:space="preserve">gerçek dünya hava durumu</target>
+        <context-group purpose="location"><context context-type="linenumber">219</context></context-group>
+      </trans-unit>
+    </group>
+  </body></file>
+  <file original="/home/devel/FGFS/flightgear/src/GUI/qml/Settings.qml" datatype="plaintext" source-language="en" target-language="tr"><body>
+    <group restype="x-trolltech-linguist-context" resname="Settings">
+      <trans-unit id="_msg99" approved="yes">
+        <source xml:space="preserve">Settings</source>
+        <target xml:space="preserve">Ayarlar</target>
+        <context-group purpose="location"><context context-type="linenumber">63</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg100" approved="yes">
+        <source xml:space="preserve">Enter text here to search for a setting</source>
+        <target xml:space="preserve">Bir ayar aramak için buraya metin girin</target>
+        <context-group purpose="location"><context context-type="linenumber">89</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg101" approved="yes">
+        <source xml:space="preserve">General</source>
+        <target xml:space="preserve">Genel</target>
+        <context-group purpose="location"><context context-type="linenumber">102</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg102" approved="yes">
+        <source xml:space="preserve">paused</source>
+        <target xml:space="preserve">duraklatıldı</target>
+        <context-group purpose="location"><context context-type="linenumber">108</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg103" approved="yes">
+        <source xml:space="preserve">console</source>
+        <target xml:space="preserve">konsol</target>
+        <context-group purpose="location"><context context-type="linenumber">109</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg104" approved="yes">
+        <source xml:space="preserve">Start paused</source>
+        <target xml:space="preserve">Başlat durklat</target>
+        <context-group purpose="location"><context context-type="linenumber">116</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg105" approved="yes">
+        <source xml:space="preserve">Automatically pause the simulator when launching. This is useful when starting in the air.</source>
+        <target xml:space="preserve">Başlatırken simülatörü otomatik olarak duraklatın. Bu, havada başlatırken kullanışlıdır.</target>
+        <context-group purpose="location"><context context-type="linenumber">117</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg106" approved="yes">
+        <source xml:space="preserve">Enable auto-coordination</source>
+        <target xml:space="preserve">Otomatik koordinasyonu etkinleştir</target>
+        <context-group purpose="location"><context context-type="linenumber">126</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg107" approved="yes">
+        <source xml:space="preserve">When flying with the mouse, or a joystick lacking a rudder axis, it&apos;s difficult to manually coordinate aileron and rudder movements during turn. This option automatically commands the rudder to maintain zero slip angle when banking</source>
+        <target xml:space="preserve">Fareyle veya dümen ekseni olmayan bir joystick ile uçarken, dönüş sırasında kanatçık ve dümen hareketlerini elle koordine etmek zordur. Bu seçenek, dümene yatarken sıfır kayma açısını korumak için dümene otomatik olarak komut verir</target>
+        <context-group purpose="location"><context context-type="linenumber">127</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg108" approved="yes">
+        <source xml:space="preserve">Show debugging console</source>
+        <target xml:space="preserve">Hata ayıklama konsolunu göster</target>
+        <context-group purpose="location"><context context-type="linenumber">139</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg109" approved="yes">
+        <source xml:space="preserve">Open a console window showing debug output from the application.</source>
+        <target xml:space="preserve">Uygulamadan hata ayıklama çıktısını gösteren bir konsol penceresi açın.</target>
+        <context-group purpose="location"><context context-type="linenumber">140</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg110" approved="yes">
+        <source xml:space="preserve">Enable crash &amp; error reporting</source>
+        <target xml:space="preserve">Kilitlenme ve hata raporlamayı etkinleştir</target>
+        <context-group purpose="location"><context context-type="linenumber">149</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg111" approved="yes">
+        <source xml:space="preserve">Send crash and error reports to the development team for analysis.</source>
+        <target xml:space="preserve">Analiz için geliştirme ekibine kilitlenme ve hata raporları gönderin.</target>
+        <context-group purpose="location"><context context-type="linenumber">150</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg112" approved="yes">
+        <source xml:space="preserve">Enable developer mode</source>
+        <target xml:space="preserve">Geliştirici modunu etkinleştir</target>
+        <context-group purpose="location"><context context-type="linenumber">159</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg113" approved="yes">
+        <source xml:space="preserve">Enable simulator &amp; aircraft development features, such as increased error messages in log files.</source>
+        <target xml:space="preserve">Günlük dosyalarında artan hata mesajları gibi simülatör ve uçak geliştirme özelliklerini etkinleştirin.</target>
+        <context-group purpose="location"><context context-type="linenumber">160</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg114" approved="yes">
+        <source xml:space="preserve">Re-open FlightGear on exit</source>
+        <target xml:space="preserve">Çıkışta FlightGear&apos;ı yeniden açın</target>
         <context-group purpose="location"><context context-type="linenumber">168</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg66" approved="yes">
-        <source xml:space="preserve">Remove the add-on module folder: &apos;%1&apos; from the list? (The folder contents will not be changed)</source>
-        <target xml:space="preserve">Eklenti modülü klasörü &apos;%1&apos; listeden kaldırılsın mı? (Klasör içeriği değişmeyecek)</target>
-        <context-group purpose="location"><context context-type="linenumber">196</context></context-group>
+      <trans-unit id="_msg115" approved="yes">
+        <source xml:space="preserve">Re-open this window when exiting FlightGear, to start another flight immediately.</source>
+        <target xml:space="preserve">Hemen başka bir uçuş başlatmak için FlightGear&apos;dan çıkarken bu pencereyi yeniden açın.</target>
+        <context-group purpose="location"><context context-type="linenumber">169</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg67" approved="yes">
-        <source xml:space="preserve">No custom add-on module paths are configured.</source>
-        <target xml:space="preserve">Hiçbir özel eklenti modülü yolu yapılandırılmadı.</target>
-        <context-group purpose="location"><context context-type="linenumber">221</context></context-group>
+      <trans-unit id="_msg116" approved="yes">
+        <source xml:space="preserve">Multi-player</source>
+        <target xml:space="preserve">Çok oyunculu</target>
+        <context-group purpose="location"><context context-type="linenumber">185</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg68" approved="yes">
-        <source xml:space="preserve">Additional scenery folders</source>
-        <target xml:space="preserve">Ek manzara klasörleri</target>
-        <context-group purpose="location"><context context-type="linenumber">238</context></context-group>
+      <trans-unit id="_msg117" approved="yes">
+        <source xml:space="preserve">multi-player</source>
+        <target xml:space="preserve">çok oyunculu</target>
+        <context-group purpose="location"><context context-type="linenumber">193</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg69" approved="yes">
-        <source xml:space="preserve">To use scenery you download yourself, FlightGear needs to know the folders containing the scenery data. Adjust the order of the list to control which scenery is used in a region.</source>
-        <target xml:space="preserve">Kendi indirdiğiniz manzarayı kullanmak için FlightGear&apos;ın manzara verilerini içeren klasörleri bilmesi gerekir. Bir bölgede hangi manzaranın kullanıldığını kontrol etmek için listenin sırasını ayarlayın.</target>
-        <context-group purpose="location"><context context-type="linenumber">239</context></context-group>
+      <trans-unit id="_msg118" approved="yes">
+        <source xml:space="preserve">Connect to the multi-player network</source>
+        <target xml:space="preserve">Çok oyunculu ağa bağlanın</target>
+        <context-group purpose="location"><context context-type="linenumber">200</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg70" approved="yes">
-        <source xml:space="preserve">Remove the scenery folder: &apos;%1&apos; from the list? (The folder contents will not be changed)</source>
-        <target xml:space="preserve">Manzara klasörü &apos;%1&apos; listeden kaldırılsın mı? (Klasör içeriği değişmeyecek)</target>
-        <context-group purpose="location"><context context-type="linenumber">264</context></context-group>
+      <trans-unit id="_msg119" approved="yes">
+        <source xml:space="preserve">FlightGear supporters maintain a network of servers to enable global multi-user flight. This requires a moderately fast Internet connection to be usable. Your aircraft will be visible to other users online, and you will see their aircraft.</source>
+        <target xml:space="preserve">FlightGear destekçileri, küresel çok kullanıcılı uçuş sağlamak için bir sunucu ağı sağlar. Bu, kullanılabilir olması için orta derecede hızlı bir İnternet bağlantısı gerektirir. Uçağınız çevrimiçi olarak diğer kullanıcılar tarafından görülebilecek ve siz de onların uçaklarını göreceksiniz.</target>
+        <context-group purpose="location"><context context-type="linenumber">201</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg71" approved="yes">
-        <source xml:space="preserve">No custom scenery paths are configured.</source>
-        <target xml:space="preserve">Hiçbir özel manzara yolu yapılandırılmamış.</target>
+      <trans-unit id="_msg120" approved="yes">
+        <source xml:space="preserve">Callsign</source>
+        <target xml:space="preserve">Çağrı işareti</target>
+        <context-group purpose="location"><context context-type="linenumber">217</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg121" approved="yes">
+        <source xml:space="preserve">Enter a callsign you will use online. This is visible to all users and is how ATC services and other pilots will refer to you. (Maximum of seven characters permitted)</source>
+        <target xml:space="preserve">Çevrimiçi kullanacağınız bir çağrı işareti girin. Bu, tüm kullanıcılar tarafından görülebilir ve ATC hizmetleri ile diğer pilotların size nasıl başvuracağıdır. (En fazla yedi karaktere izin verilir)</target>
+        <context-group purpose="location"><context context-type="linenumber">218</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg122" approved="yes">
+        <source xml:space="preserve">Server</source>
+        <target xml:space="preserve">Sunucu</target>
+        <context-group purpose="location"><context context-type="linenumber">233</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg123" approved="yes">
+        <source xml:space="preserve">Select a server close to you for better responsiveness and reduced lag when flying online.</source>
+        <target xml:space="preserve">Çevrimiçi uçarken daha iyi yanıt vermek ve gecikmeyi azaltmak için size yakın bir sunucu seçin.</target>
+        <context-group purpose="location"><context context-type="linenumber">235</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg124" approved="yes">
+        <source xml:space="preserve">Custom server</source>
+        <target xml:space="preserve">Özel sunucu</target>
         <context-group purpose="location"><context context-type="linenumber">274</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg72" approved="yes">
+      <trans-unit id="_msg125" approved="yes">
+        <source xml:space="preserve">Enter a server hostname or IP address, and optionally a port number. (Default port is 5000) For example &apos;localhost:5001&apos;</source>
+        <target xml:space="preserve">Bir sunucu ana bilgisayar adı veya IP adresi ve isteğe bağlı olarak bir bağlantı noktası numarası girin. (Varsayılan bağlantı noktası 5000&apos;dir) Örneğin &apos;localhost:5001&apos;</target>
+        <context-group purpose="location"><context context-type="linenumber">276</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg126" approved="yes">
+        <source xml:space="preserve">Downloads</source>
+        <target xml:space="preserve">İndirilenler</target>
+        <context-group purpose="location"><context context-type="linenumber">324</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg127" approved="yes">
+        <source xml:space="preserve">scenery downloads</source>
+        <target xml:space="preserve">manzara indirmeleri</target>
+        <context-group purpose="location"><context context-type="linenumber">331</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg128" approved="yes">
+        <source xml:space="preserve">Download scenery automatically</source>
+        <target xml:space="preserve">Manzarayı otomatik olarak indir</target>
+        <context-group purpose="location"><context context-type="linenumber">338</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg129" approved="yes">
+        <source xml:space="preserve">FlightGear can automatically download scenery as needed, and check for updates to the scenery. If you disable this option, you will need to download &amp; install scenery using an alternative method.</source>
+        <target xml:space="preserve">FlightGear, manzarayı gerektiği gibi otomatik olarak indirebilir ve manzaradaki güncellemeleri kontrol edebilir. Bu seçeneği devre dışı bırakırsanız, alternatif bir yöntem kullanarak manzarayı indirmeniz ve yüklemeniz gerekecektir.</target>
+        <context-group purpose="location"><context context-type="linenumber">339</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg130" approved="yes">
+        <source xml:space="preserve">Download location</source>
+        <target xml:space="preserve">İndirme konumu</target>
+        <context-group purpose="location"><context context-type="linenumber">354</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg131" approved="yes">
+        <source xml:space="preserve">FlightGear stores downloaded files (scenery and aircraft) in this location. Depending on your settings, it may grow to a considerable size (many gigabytes). If you change the download location, files will need to be downloaded again. When changing this setting, FlightGear will restart to use the new location correctly.</source>
+        <target xml:space="preserve">FlightGear, indirilen dosyaları (manzara ve uçak) bu konumda saklar. Ayarlarınıza bağlı olarak, önemli bir boyuta (birçok gigabayt) kadar büyüyebilir. İndirme konumunu değiştirirseniz, dosyaların yeniden indirilmesi gerekir. Bu ayarı değiştirirken FlightGear yeni konumu doğru şekilde kullanmak için yeniden başlar.</target>
+        <context-group purpose="location"><context context-type="linenumber">355</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg132" approved="yes">
+        <source xml:space="preserve">Choose a location to store download files.</source>
+        <target xml:space="preserve">İndirilen dosyaları depolamak için bir konum seçin.</target>
+        <context-group purpose="location"><context context-type="linenumber">362</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg133" approved="yes">
+        <source xml:space="preserve">View &amp; Window</source>
+        <target xml:space="preserve">Görünüm ve Pencere</target>
+        <context-group purpose="location"><context context-type="linenumber">397</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg134" approved="yes">
+        <source xml:space="preserve">full-screen</source>
+        <target xml:space="preserve">tam ekran</target>
+        <context-group purpose="location"><context context-type="linenumber">404</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg135" approved="yes">
+        <source xml:space="preserve">Start full-screen</source>
+        <target xml:space="preserve">Tam ekranı başlat</target>
+        <context-group purpose="location"><context context-type="linenumber">411</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg136" approved="yes">
+        <source xml:space="preserve">Start the simulator in full-screen mode.</source>
+        <target xml:space="preserve">Simülatörü tam ekran modunda başlatın.</target>
+        <context-group purpose="location"><context context-type="linenumber">412</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg137" approved="yes">
+        <source xml:space="preserve">Window size</source>
+        <target xml:space="preserve">Pencere boyutu</target>
+        <context-group purpose="location"><context context-type="linenumber">420</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg138" approved="yes">
+        <source xml:space="preserve">Select the initial size of the window (this has no effect in full-screen mode).</source>
+        <target xml:space="preserve">Pencerenin başlangıç boyutunu seçin (bunun tam ekran modunda hiçbir etkisi yoktur).</target>
+        <context-group purpose="location"><context context-type="linenumber">421</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg139" approved="yes">
+        <source xml:space="preserve">Custom Size</source>
+        <target xml:space="preserve">Özel Boyut</target>
+        <context-group purpose="location"><context context-type="linenumber">423</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg140" approved="yes">
+        <source xml:space="preserve">Custom size</source>
+        <target xml:space="preserve">Özel boyut</target>
+        <context-group purpose="location"><context context-type="linenumber">434</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg141" approved="yes">
+        <source xml:space="preserve">Enter a custom window size in the form &apos;WWWWW x HHHHH&apos;, for example &apos;1280 x 900&apos;</source>
+        <target xml:space="preserve">&quot;WWWW x HHHHH&quot; biçiminde özel bir pencere boyutu girin, örneğin &quot;1280 x 900&quot;</target>
+        <context-group purpose="location"><context context-type="linenumber">436</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg142" approved="yes">
+        <source xml:space="preserve">Rendering</source>
+        <target xml:space="preserve">İşleme</target>
+        <context-group purpose="location"><context context-type="linenumber">456</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg143" approved="yes">
+        <source xml:space="preserve">anti-aliasing</source>
+        <target xml:space="preserve">kenar yumuşatma</target>
+        <context-group purpose="location"><context context-type="linenumber">465</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg144" approved="yes">
+        <source xml:space="preserve">Anti-aliasing</source>
+        <target xml:space="preserve">Kenar yumuşatma</target>
+        <context-group purpose="location"><context context-type="linenumber">472</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg145" approved="yes">
+        <source xml:space="preserve">Anti-aliasing improves the appearance of high-contrast edges and lines. This is especially noticeable on sloping or diagonal edges. Higher settings can reduce performance.</source>
+        <target xml:space="preserve">Kenar yumuşatma, yüksek kontrastlı kenarların ve çizgilerin görünümünü iyileştirir. Bu özellikle eğimli veya çapraz kenarlarda fark edilir. Daha yüksek ayarlar performansı düşürebilir.</target>
+        <context-group purpose="location"><context context-type="linenumber">474</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg146" approved="yes">
+        <source xml:space="preserve">Off</source>
+        <target xml:space="preserve">Kapalı</target>
+        <context-group purpose="location"><context context-type="linenumber">478</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg147" approved="yes">
+        <source xml:space="preserve">Cache graphics for faster loading</source>
+        <target xml:space="preserve">Daha hızlı yükleme için grafikleri önbelleğe alın</target>
+        <context-group purpose="location"><context context-type="linenumber">490</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg148" approved="yes">
+        <source xml:space="preserve">By converting images used in rendering to an optimised format loading times and memory use can be improved. This will consume some disk space and take initial time while images are converted, but subsequent loads will be faster, and use less memory.</source>
+        <target xml:space="preserve">Oluşturmada kullanılan görüntüleri optimize edilmiş bir formata dönüştürerek yükleme süreleri ve bellek kullanımı iyileştirilebilir. Bu, bir miktar disk alanı tüketecek ve görüntüler dönüştürülürken ilk zaman alacak, ancak sonraki yükler daha hızlı olacak ve daha az bellek kullanacak.</target>
+        <context-group purpose="location"><context context-type="linenumber">491</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg149" approved="yes">
+        <source xml:space="preserve">Additional Settings</source>
+        <target xml:space="preserve">Ek ayarlar</target>
+        <context-group purpose="location"><context context-type="linenumber">511</context></context-group>
+      </trans-unit>
+    </group>
+  </body></file>
+  <file original="/home/devel/FGFS/flightgear/src/GUI/AddOnsController.cxx" datatype="cpp" source-language="en" target-language="tr"><body>
+    <group restype="x-trolltech-linguist-context" resname="AddOnsController">
+      <trans-unit id="_msg150" approved="yes">
+        <source xml:space="preserve">Choose aircraft folder</source>
+        <target xml:space="preserve">Uçak klasörünü seçin</target>
+        <context-group purpose="location"><context context-type="linenumber">137</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg151" approved="yes">
+        <source xml:space="preserve">No aircraft found in the folder &apos;%1&apos; - add anyway?</source>
+        <target xml:space="preserve">&apos;%1&apos; klasöründe uçak bulunamadı - yine de eklensin mi?</target>
+        <context-group purpose="location"><context context-type="linenumber">161</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg152" approved="yes">
+        <source xml:space="preserve">Choose addon module folder</source>
+        <target xml:space="preserve">Eklenti modülü klasörünü seçin</target>
+        <context-group purpose="location"><context context-type="linenumber">180</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg153" approved="yes">
+        <source xml:space="preserve">The folder &apos;%1&apos; doesn&apos;t appear to contain an addon module - add anyway?</source>
+        <target xml:space="preserve">&apos;%1&apos; klasörü bir eklenti modülü içermiyor - yine de eklensin mi?</target>
+        <context-group purpose="location"><context context-type="linenumber">199</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg154" approved="yes">
+        <source xml:space="preserve">Added modules should contain at least both of the following files: addon-metadata.xml, addon-main.nas.</source>
+        <target xml:space="preserve">Eklenen modüller en az şu dosyalardan her ikisini de içermelidir: addon-metadata.xml, addon-main.nas.</target>
+        <context-group purpose="location"><context context-type="linenumber">202</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg155" approved="yes">
+        <source xml:space="preserve">Choose scenery folder</source>
+        <target xml:space="preserve">Manzara klasörünü seçin</target>
+        <context-group purpose="location"><context context-type="linenumber">230</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg156" approved="yes">
+        <source xml:space="preserve">The folder &apos;%1&apos; doesn&apos;t appear to contain scenery - add anyway?</source>
+        <target xml:space="preserve">&apos;%1&apos; klasörü manzara içermiyor - yine de eklensin mi?</target>
+        <context-group purpose="location"><context context-type="linenumber">249</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg157" approved="yes">
+        <source xml:space="preserve">Added scenery should contain at least one of the following folders: Objects, Terrain, Buildings, Roads, Pylons, NavData, Airports, Orthophotos.</source>
+        <target xml:space="preserve">Eklenen manzara aşağıdaki klasörlerden en az birini içermelidir: Objects, Terrain, Buildings, Roads, Pylons, NavData, Airports, Orthphotos.</target>
+        <context-group purpose="location"><context context-type="linenumber">252</context></context-group>
+      </trans-unit>
+    </group>
+  </body></file>
+  <file original="/home/devel/FGFS/flightgear/src/GUI/qml/AddOns.qml" datatype="plaintext" source-language="en" target-language="tr"><body>
+    <group restype="x-trolltech-linguist-context" resname="AddOns">
+      <trans-unit id="_msg158" approved="yes">
+        <source xml:space="preserve">Aircraft hangars</source>
+        <target xml:space="preserve">Uçak hangarları</target>
+        <context-group purpose="location"><context context-type="linenumber">55</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg159" approved="yes">
+        <source xml:space="preserve">Aircraft hangars are managed collections of aircraft, which can be downloaded, installed and updated inside FlightGear.</source>
+        <target xml:space="preserve">Uçak hangarları, FlightGear içinde indirilebilen, kurulabilen ve güncellenebilen, yönetilen uçak koleksiyonlarıdır.</target>
+        <context-group purpose="location"><context context-type="linenumber">56</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg160" approved="yes">
+        <source xml:space="preserve">The official FlightGear aircraft hangar is not set up. To add it, click here.</source>
+        <target xml:space="preserve">Resmi FlightGear uçak hangarı kurulmadı. Eklemek için burayı tıklayın.</target>
+        <context-group purpose="location"><context context-type="linenumber">97</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg161" approved="yes">
+        <source xml:space="preserve">Additional aircraft folders</source>
+        <target xml:space="preserve">Ek uçak klasörleri</target>
+        <context-group purpose="location"><context context-type="linenumber">207</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg162" approved="yes">
+        <source xml:space="preserve">To use aircraft you download yourself, FlightGear needs to know the folder(s) containing the aircraft data.</source>
+        <target xml:space="preserve">Kendi indirdiğiniz uçağı kullanmak için FlightGear&apos;ın uçak verilerini içeren klasörleri bilmesi gerekir.</target>
+        <context-group purpose="location"><context context-type="linenumber">208</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg163" approved="yes">
+        <source xml:space="preserve">Remove the aircraft folder: &apos;%1&apos; from the list? (The folder contents will not be changed)</source>
+        <target xml:space="preserve">Uçak klasörü &apos;%1&apos; listeden kaldırılsın mı? (Klasör içeriği değişmeyecek)</target>
+        <context-group purpose="location"><context context-type="linenumber">232</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg164" approved="yes">
+        <source xml:space="preserve">No custom aircraft paths are configured.</source>
+        <target xml:space="preserve">Hiçbir özel uçak yolu yapılandırılmamış.</target>
+        <context-group purpose="location"><context context-type="linenumber">242</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg165" approved="yes">
+        <source xml:space="preserve">Add-on Module folders</source>
+        <target xml:space="preserve">Eklenti Modülü klasörleri</target>
+        <context-group purpose="location"><context context-type="linenumber">120</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg166" approved="yes">
+        <source xml:space="preserve">To use Add-on Modules that you download yourself, FlightGear needs to know the folder(s) containing the Add-on Modules.</source>
+        <target xml:space="preserve">Kendi indirdiğiniz Eklenti Modüllerini kullanmak için FlightGear&apos;ın Eklenti Modüllerini içeren klasörleri bilmesi gerekir.</target>
+        <context-group purpose="location"><context context-type="linenumber">121</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg167" approved="yes">
+        <source xml:space="preserve">Remove the add-on module folder: &apos;%1&apos; from the list? (The folder contents will not be changed)</source>
+        <target xml:space="preserve">Eklenti modülü klasörü &apos;%1&apos; listeden kaldırılsın mı? (Klasör içeriği değişmeyecek)</target>
+        <context-group purpose="location"><context context-type="linenumber">150</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg168" approved="yes">
+        <source xml:space="preserve">No custom add-on module paths are configured.</source>
+        <target xml:space="preserve">Hiçbir özel eklenti modülü yolu yapılandırılmadı.</target>
+        <context-group purpose="location"><context context-type="linenumber">175</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg169" approved="yes">
+        <source xml:space="preserve">Additional scenery folders</source>
+        <target xml:space="preserve">Ek manzara klasörleri</target>
+        <context-group purpose="location"><context context-type="linenumber">259</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg170" approved="yes">
+        <source xml:space="preserve">To use scenery you download yourself, FlightGear needs to know the folders containing the scenery data. Adjust the order of the list to control which scenery is used in a region.</source>
+        <target xml:space="preserve">Kendi indirdiğiniz manzarayı kullanmak için FlightGear&apos;ın manzara verilerini içeren klasörleri bilmesi gerekir. Bir bölgede hangi manzaranın kullanıldığını kontrol etmek için listenin sırasını ayarlayın.</target>
+        <context-group purpose="location"><context context-type="linenumber">260</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg171" approved="yes">
+        <source xml:space="preserve">Remove the scenery folder: &apos;%1&apos; from the list? (The folder contents will not be changed)</source>
+        <target xml:space="preserve">Manzara klasörü &apos;%1&apos; listeden kaldırılsın mı? (Klasör içeriği değişmeyecek)</target>
+        <context-group purpose="location"><context context-type="linenumber">286</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg172" approved="yes">
+        <source xml:space="preserve">No custom scenery paths are configured.</source>
+        <target xml:space="preserve">Hiçbir özel manzara yolu yapılandırılmamış.</target>
+        <context-group purpose="location"><context context-type="linenumber">296</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg173" approved="yes">
         <source xml:space="preserve">Additional aircraft or scenery folders were specified on the command-line. These are not listed here, but will be used when starting the simulator.</source>
         <target xml:space="preserve">Komut satırında ek uçak veya manzara klasörleri belirtildi. Bunlar burada listelenmemiştir, ancak simülatör başlatılırken kullanılacaktır.</target>
-        <context-group purpose="location"><context context-type="linenumber">291</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">195</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg73" approved="yes">
+      <trans-unit id="_msg174" approved="yes">
         <source xml:space="preserve">Install add-on scenery</source>
         <target xml:space="preserve">Manzara eklentisini yükleyin</target>
-        <context-group purpose="location"><context context-type="linenumber">299</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">306</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg74" approved="yes">
+      <trans-unit id="_msg175" approved="yes">
         <source xml:space="preserve">If you have downloaded scenery manually from the official FlightGear website, you can use this button to extract and install it into a suitable folder. (Scenery downloaded this way should have a file name such as &apos;w40n020.tar.gz&apos;)</source>
         <target xml:space="preserve">Manzarayı resmi FlightGear web sitesinden elle indirdiyseniz, bu düğmeyi uygun bir klasöre çıkarmak ve yüklemek için kullanabilirsiniz. (Bu şekilde indirilen manzara, &apos;w40n020.tar.gz&apos; gibi bir dosya adına sahip olmalıdır)</target>
-        <context-group purpose="location"><context context-type="linenumber">322</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">329</context></context-group>
       </trans-unit>
     </group>
   </body></file>
   <file original="/home/devel/FGFS/flightgear/src/GUI/qml/AddOnsDelegate.qml" datatype="plaintext" source-language="en" target-language="tr"><body>
     <group restype="x-trolltech-linguist-context" resname="AddOnsDelegate">
-      <trans-unit id="_msg75" approved="yes">
+      <trans-unit id="_msg176" approved="yes">
         <source xml:space="preserve">%1 %2</source>
         <target xml:space="preserve">%1 %2</target>
         <context-group purpose="location"><context context-type="linenumber">18</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg76" approved="yes">
+      <trans-unit id="_msg177" approved="yes">
         <source xml:space="preserve"> (disabled due to incompatible FG version)</source>
         <target xml:space="preserve"> (uyumsuz FG sürümü nedeniyle devre dışı bırakıldı)</target>
         <context-group purpose="location"><context context-type="linenumber">18</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg77" approved="yes">
+      <trans-unit id="_msg178" approved="yes">
         <source xml:space="preserve">Remove</source>
         <target xml:space="preserve">Kaldır</target>
         <context-group purpose="location"><context context-type="linenumber">118</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg78" approved="yes">
+      <trans-unit id="_msg179" approved="yes">
         <source xml:space="preserve">Cancel</source>
         <target xml:space="preserve">İptal</target>
         <context-group purpose="location"><context context-type="linenumber">119</context></context-group>
@@ -444,81 +973,81 @@
   </body></file>
   <file original="/home/devel/FGFS/flightgear/src/GUI/qml/AddonsDetailsView.qml" datatype="plaintext" source-language="en" target-language="tr"><body>
     <group restype="x-trolltech-linguist-context" resname="AddonsDetailsView">
-      <trans-unit id="_msg79" approved="yes">
+      <trans-unit id="_msg180" approved="yes">
         <source xml:space="preserve">%1: %2</source>
         <target xml:space="preserve">%1: %2</target>
-        <context-group purpose="location"><context context-type="linenumber">30</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">32</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg80" approved="yes">
+      <trans-unit id="_msg181" approved="yes">
         <source xml:space="preserve">Module</source>
         <target xml:space="preserve">Modül</target>
-        <context-group purpose="location"><context context-type="linenumber">51</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">53</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg81" approved="yes">
+      <trans-unit id="_msg182" approved="yes">
         <source xml:space="preserve">Description</source>
         <target xml:space="preserve">Açıklama</target>
-        <context-group purpose="location"><context context-type="linenumber">70</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">72</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg82" approved="yes">
+      <trans-unit id="_msg183" approved="yes">
         <source xml:space="preserve">Id</source>
         <target xml:space="preserve">Kimlik</target>
-        <context-group purpose="location"><context context-type="linenumber">78</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">80</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg83" approved="yes">
+      <trans-unit id="_msg184" approved="yes">
         <source xml:space="preserve">Version</source>
         <target xml:space="preserve">Sürüm</target>
-        <context-group purpose="location"><context context-type="linenumber">86</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">88</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg84" approved="yes">
+      <trans-unit id="_msg185" approved="yes">
         <source xml:space="preserve">Minimum FlightGear version</source>
         <target xml:space="preserve">En düşük FlightGear sürümü</target>
-        <context-group purpose="location"><context context-type="linenumber">94</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">96</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg85" approved="yes">
+      <trans-unit id="_msg186" approved="yes">
         <source xml:space="preserve">Maximum FlightGear version</source>
         <target xml:space="preserve">En yüksek FlightGear sürümü</target>
-        <context-group purpose="location"><context context-type="linenumber">102</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">104</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg86" approved="yes">
+      <trans-unit id="_msg187" approved="yes">
         <source xml:space="preserve">Authors</source>
         <target xml:space="preserve">Yazarlar</target>
-        <context-group purpose="location"><context context-type="linenumber">110</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">112</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg87" approved="yes">
+      <trans-unit id="_msg188" approved="yes">
         <source xml:space="preserve">Maintainers</source>
         <target xml:space="preserve">Bakıcılar</target>
-        <context-group purpose="location"><context context-type="linenumber">119</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">121</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg88" approved="yes">
+      <trans-unit id="_msg189" approved="yes">
         <source xml:space="preserve">Website</source>
         <target xml:space="preserve">İnternet Sitesi</target>
-        <context-group purpose="location"><context context-type="linenumber">138</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">140</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg89" approved="yes">
+      <trans-unit id="_msg190" approved="yes">
         <source xml:space="preserve">Support and issue reporting</source>
         <target xml:space="preserve">Destek ve sorun raporlama</target>
-        <context-group purpose="location"><context context-type="linenumber">144</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">146</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg90" approved="yes">
+      <trans-unit id="_msg191" approved="yes">
         <source xml:space="preserve">Download</source>
         <target xml:space="preserve">İndir</target>
-        <context-group purpose="location"><context context-type="linenumber">150</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">152</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg91" approved="yes">
+      <trans-unit id="_msg192" approved="yes">
         <source xml:space="preserve">Local file location</source>
         <target xml:space="preserve">Yerel dosya konumu</target>
-        <context-group purpose="location"><context context-type="linenumber">157</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">159</context></context-group>
       </trans-unit>
     </group>
   </body></file>
   <file original="/home/devel/FGFS/flightgear/src/GUI/qml/AdvancedSettingsToggle.qml" datatype="plaintext" source-language="en" target-language="tr"><body>
     <group restype="x-trolltech-linguist-context" resname="AdvancedSettingsToggle">
-      <trans-unit id="_msg92" approved="yes">
+      <trans-unit id="_msg193" approved="yes">
         <source xml:space="preserve">Show more</source>
         <target xml:space="preserve">Daha fazla göster</target>
         <context-group purpose="location"><context context-type="linenumber">17</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg93" approved="yes">
+      <trans-unit id="_msg194" approved="yes">
         <source xml:space="preserve">Show less</source>
         <target xml:space="preserve">Daha az göster</target>
         <context-group purpose="location"><context context-type="linenumber">25</context></context-group>
@@ -527,115 +1056,136 @@
   </body></file>
   <file original="/home/devel/FGFS/flightgear/src/GUI/qml/AircraftCompactDelegate.qml" datatype="plaintext" source-language="en" target-language="tr"><body>
     <group restype="x-trolltech-linguist-context" resname="AircraftCompactDelegate">
-      <trans-unit id="_msg94" approved="yes">
+      <trans-unit id="_msg195" approved="yes">
         <source xml:space="preserve">URI: %1
 Local path: %2</source>
         <target xml:space="preserve">URI: %1
 Yerel yol: %2</target>
-        <context-group purpose="location"><context context-type="linenumber">28</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">26</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg95" approved="yes">
+      <trans-unit id="_msg196" approved="yes">
         <source xml:space="preserve">Click here to select different variants or models of this aircraft</source>
         <target xml:space="preserve">Bu uçağın farklı çeşitlerini veya modellerini seçmek için buraya tıklayın</target>
-        <context-group purpose="location"><context context-type="linenumber">127</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">125</context></context-group>
       </trans-unit>
     </group>
   </body></file>
   <file original="/home/devel/FGFS/flightgear/src/GUI/qml/AircraftDetailsView.qml" datatype="plaintext" source-language="en" target-language="tr"><body>
     <group restype="x-trolltech-linguist-context" resname="AircraftDetailsView">
-      <trans-unit id="_msg96" approved="yes">
+      <trans-unit id="_msg197" approved="yes">
         <source xml:space="preserve">by %1</source>
         <target xml:space="preserve">%1 tarafından</target>
-        <context-group purpose="location"><context context-type="linenumber">116</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">119</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg97" approved="yes">
+      <trans-unit id="_msg198" approved="yes">
         <source xml:space="preserve">Website</source>
         <target xml:space="preserve">İnternet Sitesi</target>
-        <context-group purpose="location"><context context-type="linenumber">134</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">137</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg98" approved="yes">
+      <trans-unit id="_msg199" approved="yes">
         <source xml:space="preserve">Support and issue reporting</source>
         <target xml:space="preserve">Destek ve sorun raporlama</target>
-        <context-group purpose="location"><context context-type="linenumber">140</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">143</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg99" approved="yes">
+      <trans-unit id="_msg200" approved="yes">
         <source xml:space="preserve">Wikipedia</source>
         <target xml:space="preserve">Wikipedia</target>
-        <context-group purpose="location"><context context-type="linenumber">146</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">149</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg100" approved="yes">
+      <trans-unit id="_msg201" approved="yes">
         <source xml:space="preserve">Click here to mark this as a favourite aircraft</source>
         <target xml:space="preserve">Bunu favori bir uçak olarak işaretlemek için buraya tıklayın</target>
-        <context-group purpose="location"><context context-type="linenumber">184</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">187</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg101" approved="yes">
+      <trans-unit id="_msg202" approved="yes">
         <source xml:space="preserve">Ratings:</source>
         <target xml:space="preserve">Derecelendirme:</target>
-        <context-group purpose="location"><context context-type="linenumber">201</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">204</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg102" approved="yes">
+      <trans-unit id="_msg203" approved="yes">
         <source xml:space="preserve">Flight model</source>
         <target xml:space="preserve">Uçuş modeli</target>
-        <context-group purpose="location"><context context-type="linenumber">206</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">209</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg103" approved="yes">
+      <trans-unit id="_msg204" approved="yes">
         <source xml:space="preserve">Systems</source>
         <target xml:space="preserve">Sistemler</target>
-        <context-group purpose="location"><context context-type="linenumber">214</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">217</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg104" approved="yes">
+      <trans-unit id="_msg205" approved="yes">
         <source xml:space="preserve">Cockpit</source>
         <target xml:space="preserve">Kokpit</target>
-        <context-group purpose="location"><context context-type="linenumber">227</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">230</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg105" approved="yes">
+      <trans-unit id="_msg206" approved="yes">
         <source xml:space="preserve">Exterior</source>
         <target xml:space="preserve">Dış</target>
-        <context-group purpose="location"><context context-type="linenumber">235</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">238</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg106" approved="yes">
+      <trans-unit id="_msg207" approved="yes">
         <source xml:space="preserve">Local file location: %1</source>
         <target xml:space="preserve">Yerel dosya konumu: %1</target>
-        <context-group purpose="location"><context context-type="linenumber">245</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">248</context></context-group>
       </trans-unit>
     </group>
   </body></file>
   <file original="/home/devel/FGFS/flightgear/src/GUI/qml/AircraftDownloadPanel.qml" datatype="plaintext" source-language="en" target-language="tr"><body>
     <group restype="x-trolltech-linguist-context" resname="AircraftDownloadPanel">
-      <trans-unit id="_msg107" approved="yes">
+      <trans-unit id="_msg208" approved="yes">
         <source xml:space="preserve">Install</source>
         <target xml:space="preserve">Yükle</target>
         <context-group purpose="location"><context context-type="linenumber">46</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg108" approved="yes">
+      <trans-unit id="_msg209" approved="yes">
         <source xml:space="preserve">Uninstall</source>
         <target xml:space="preserve">Kaldır</target>
         <context-group purpose="location"><context context-type="linenumber">60</context></context-group>
         <context-group purpose="location"><context context-type="linenumber">195</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg109" approved="yes">
+      <trans-unit id="_msg210" approved="yes">
         <source xml:space="preserve">Update</source>
         <target xml:space="preserve">Güncelle</target>
         <context-group purpose="location"><context context-type="linenumber">74</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg110" approved="yes">
+      <trans-unit id="_msg211" approved="yes">
         <source xml:space="preserve">Queued</source>
         <target xml:space="preserve">Kuyrukta</target>
         <context-group purpose="location"><context context-type="linenumber">93</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg111" approved="yes">
+      <trans-unit id="_msg212" approved="yes">
         <source xml:space="preserve">Cancel</source>
         <target xml:space="preserve">İptal</target>
         <context-group purpose="location"><context context-type="linenumber">94</context></context-group>
         <context-group purpose="location"><context context-type="linenumber">111</context></context-group>
         <context-group purpose="location"><context context-type="linenumber">196</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg112" approved="yes">
+      <trans-unit id="_msg213" approved="yes">
         <source xml:space="preserve">Downloading</source>
         <target xml:space="preserve">İndiriliyor</target>
         <context-group purpose="location"><context context-type="linenumber">110</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg113" approved="yes">
+      <trans-unit id="_msg214" approved="yes">
+        <source xml:space="preserve">Size: </source>
+        <target xml:space="preserve">Boyut: </target>
+        <context-group purpose="location"><context context-type="linenumber">144</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg215" approved="yes">
+        <source xml:space="preserve"> MB</source>
+        <target xml:space="preserve"> MB</target>
+        <context-group purpose="location"><context context-type="linenumber">144</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">186</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg216" approved="yes">
+        <source xml:space="preserve">Downloaded </source>
+        <target xml:space="preserve">İndirildi </target>
+        <context-group purpose="location"><context context-type="linenumber">185</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg217" approved="yes">
+        <source xml:space="preserve"> MB of </source>
+        <target xml:space="preserve"> MB / </target>
+        <context-group purpose="location"><context context-type="linenumber">186</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg218" approved="yes">
         <source xml:space="preserve">Are you sure you want to uninstall this aircraft?</source>
         <target xml:space="preserve">Bu uçağı kaldırmak istediğinizden emin misiniz?</target>
         <context-group purpose="location"><context context-type="linenumber">193</context></context-group>
@@ -644,71 +1194,71 @@ Yerel yol: %2</target>
   </body></file>
   <file original="/home/devel/FGFS/flightgear/src/GUI/qml/AircraftGridDelegate.qml" datatype="plaintext" source-language="en" target-language="tr"><body>
     <group restype="x-trolltech-linguist-context" resname="AircraftGridDelegate">
-      <trans-unit id="_msg114" approved="yes">
+      <trans-unit id="_msg219" approved="yes">
         <source xml:space="preserve">Install</source>
         <target xml:space="preserve">Kur</target>
-        <context-group purpose="location"><context context-type="linenumber">64</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">63</context></context-group>
       </trans-unit>
     </group>
   </body></file>
   <file original="/home/devel/FGFS/flightgear/src/GUI/qml/AircraftList.qml" datatype="plaintext" source-language="en" target-language="tr"><body>
     <group restype="x-trolltech-linguist-context" resname="AircraftList">
-      <trans-unit id="_msg115" approved="yes">
+      <trans-unit id="_msg220" approved="yes">
         <source xml:space="preserve">Toggle between grid and list view</source>
         <target xml:space="preserve">Izgara ve liste görünümü arasında geçiş yap</target>
         <context-group purpose="location"><context context-type="linenumber">59</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg116" approved="yes">
+      <trans-unit id="_msg221" approved="yes">
         <source xml:space="preserve">Installed Aircraft</source>
         <target xml:space="preserve">Kurulu Uçak</target>
         <context-group purpose="location"><context context-type="linenumber">69</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg117" approved="yes">
+      <trans-unit id="_msg222" approved="yes">
         <source xml:space="preserve">Use this button to view installed aircraft</source>
         <target xml:space="preserve">Kurulu uçakları görüntülemek için bu düğmeyi kullanın</target>
         <context-group purpose="location"><context context-type="linenumber">85</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg118" approved="yes">
+      <trans-unit id="_msg223" approved="yes">
         <source xml:space="preserve">Favourites</source>
         <target xml:space="preserve">Favoriler</target>
         <context-group purpose="location"><context context-type="linenumber">91</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg119" approved="yes">
+      <trans-unit id="_msg224" approved="yes">
         <source xml:space="preserve">Browse</source>
         <target xml:space="preserve">Gözat</target>
         <context-group purpose="location"><context context-type="linenumber">101</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg120" approved="yes">
+      <trans-unit id="_msg225" approved="yes">
         <source xml:space="preserve">View available aircraft to download</source>
         <target xml:space="preserve">İndirmek için mevcut uçakları görüntüleyin</target>
         <context-group purpose="location"><context context-type="linenumber">117</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg121" approved="yes">
+      <trans-unit id="_msg226" approved="yes">
         <source xml:space="preserve">Updates</source>
         <target xml:space="preserve">Güncellemeler</target>
         <context-group purpose="location"><context context-type="linenumber">124</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg122" approved="yes">
+      <trans-unit id="_msg227" approved="yes">
         <source xml:space="preserve">Enter text to search aircraft names and descriptions.</source>
         <target xml:space="preserve">Uçak adlarını ve açıklamalarını aramak için metin girin.</target>
         <context-group purpose="location"><context context-type="linenumber">159</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg123" approved="yes">
+      <trans-unit id="_msg228" approved="yes">
         <source xml:space="preserve">No aircraft match the search.</source>
         <target xml:space="preserve">Aramayla eşleşen uçak yok.</target>
         <context-group purpose="location"><context context-type="linenumber">208</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg124" approved="yes">
+      <trans-unit id="_msg229" approved="yes">
         <source xml:space="preserve">No favourite aircraft selected: install some aircraft and mark them as favourites by clicking the ★</source>
         <target xml:space="preserve">Favori uçak seçilmedi: Birkaç uçak kurun ve ★ simgesine tıklayarak favori olarak işaretleyin</target>
         <context-group purpose="location"><context context-type="linenumber">226</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg125" approved="yes">
+      <trans-unit id="_msg230" approved="yes">
         <source xml:space="preserve">To install additional aircraft, click the the &apos;Browse&apos; tab at the top of this page.</source>
         <target xml:space="preserve">Ek uçak kurmak için bu sayfanın üst kısmındaki &apos;Gözat&apos; sekmesine tıklayın.</target>
         <context-group purpose="location"><context context-type="linenumber">251</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg126" approved="yes">
+      <trans-unit id="_msg231" approved="yes">
         <source xml:space="preserve">No aircraft updates available right now</source>
         <target xml:space="preserve">Şu anda mevcut uçak güncellemesi yok</target>
         <context-group purpose="location"><context context-type="linenumber">309</context></context-group>
@@ -717,80 +1267,80 @@ Yerel yol: %2</target>
   </body></file>
   <file original="/home/devel/FGFS/flightgear/src/GUI/qml/AircraftPreviewPanel.qml" datatype="plaintext" source-language="en" target-language="tr"><body>
     <group restype="x-trolltech-linguist-context" resname="AircraftPreviewPanel">
-      <trans-unit id="_msg127" approved="yes">
+      <trans-unit id="_msg232" approved="yes">
         <source xml:space="preserve">Click here to cycle through preview images</source>
         <target xml:space="preserve">Önizleme görüntüleri arasında geçiş yapmak için burayı tıklayın</target>
-        <context-group purpose="location"><context context-type="linenumber">119</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">118</context></context-group>
       </trans-unit>
     </group>
   </body></file>
   <file original="/home/devel/FGFS/flightgear/src/GUI/qml/AircraftRatingsPanel.qml" datatype="plaintext" source-language="en" target-language="tr"><body>
     <group restype="x-trolltech-linguist-context" resname="AircraftRatingsPanel">
-      <trans-unit id="_msg128" approved="yes">
+      <trans-unit id="_msg233" approved="yes">
         <source xml:space="preserve">Filter using ratings</source>
         <target xml:space="preserve">Derecelendirmeleri kullanarak filtreleyin</target>
-        <context-group purpose="location"><context context-type="linenumber">25</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">23</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg129" approved="yes">
+      <trans-unit id="_msg234" approved="yes">
         <source xml:space="preserve">Adjust minimum ratings</source>
         <target xml:space="preserve">Asgari derecelendirmeleri ayarlayın</target>
-        <context-group purpose="location"><context context-type="linenumber">43</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">41</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg130" approved="yes">
+      <trans-unit id="_msg235" approved="yes">
         <source xml:space="preserve">Click here to change which aircraft are shown or hidden based on their ratings</source>
         <target xml:space="preserve">Derecelerine göre hangi uçakların gösterileceğini veya gizleneceğini değiştirmek için burayı tıklayın</target>
-        <context-group purpose="location"><context context-type="linenumber">67</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">65</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg131" approved="yes">
+      <trans-unit id="_msg236" approved="yes">
         <source xml:space="preserve">Aircraft are rated by the community based on four critiera, on a scale from one to five. The ratings are designed to help make an informed guess how complete and functional an aircraft is.</source>
         <target xml:space="preserve">Uçaklar, topluluk tarafından birden beşe kadar bir ölçekte dört kritere göre derecelendirilir. Derecelendirmeler, bir uçağın ne kadar eksiksiz ve işlevsel olduğu konusunda bilinçli bir tahminde bulunmaya yardımcı olmak için tasarlanmıştır.</target>
-        <context-group purpose="location"><context context-type="linenumber">99</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">97</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg132" approved="yes">
+      <trans-unit id="_msg237" approved="yes">
         <source xml:space="preserve">Minimum flight-model (FDM) rating:</source>
         <target xml:space="preserve">Asgari uçuş modeli (FDM) derecesi:</target>
-        <context-group purpose="location"><context context-type="linenumber">108</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">106</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg133" approved="yes">
+      <trans-unit id="_msg238" approved="yes">
         <source xml:space="preserve">Minimum systems rating</source>
         <target xml:space="preserve">Asgari sistem derecelendirmesi</target>
-        <context-group purpose="location"><context context-type="linenumber">114</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">112</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg134" approved="yes">
+      <trans-unit id="_msg239" approved="yes">
         <source xml:space="preserve">Minimum cockpit visual rating</source>
         <target xml:space="preserve">Asgari kokpit görsel derecelendirmesi</target>
-        <context-group purpose="location"><context context-type="linenumber">120</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">118</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg135" approved="yes">
+      <trans-unit id="_msg240" approved="yes">
         <source xml:space="preserve">Minimum exterial visual model rating</source>
         <target xml:space="preserve">Asgari dış görsel model derecelendirmesi</target>
-        <context-group purpose="location"><context context-type="linenumber">126</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">124</context></context-group>
       </trans-unit>
     </group>
   </body></file>
   <file original="/home/devel/FGFS/flightgear/src/GUI/qml/CatalogDelegate.qml" datatype="plaintext" source-language="en" target-language="tr"><body>
     <group restype="x-trolltech-linguist-context" resname="CatalogDelegate">
-      <trans-unit id="_msg136" approved="yes">
+      <trans-unit id="_msg241" approved="yes">
         <source xml:space="preserve">This hangar is not compatible with this version of FlightGear</source>
         <target xml:space="preserve">Bu hangar, FlightGear&apos;ın bu sürümüyle uyumlu değil</target>
         <context-group purpose="location"><context context-type="linenumber">91</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg137" approved="yes">
+      <trans-unit id="_msg242" approved="yes">
         <source xml:space="preserve">This hangar is currently disabled due to a problem. Click here to try updating the hangar information from the server. (An Internet connection is required for this)</source>
         <target xml:space="preserve">Bu hangar şu anda bir sorun nedeniyle devre dışı. Sunucudan hangar bilgilerini güncellemeyi denemek için buraya tıklayın. (Bunun için internet bağlantısı gereklidir)</target>
         <context-group purpose="location"><context context-type="linenumber">99</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg138" approved="yes">
+      <trans-unit id="_msg243" approved="yes">
         <source xml:space="preserve">Remove</source>
         <target xml:space="preserve">Kaldır</target>
         <context-group purpose="location"><context context-type="linenumber">139</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg139" approved="yes">
+      <trans-unit id="_msg244" approved="yes">
         <source xml:space="preserve">Cancel</source>
         <target xml:space="preserve">İptal</target>
         <context-group purpose="location"><context context-type="linenumber">140</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg140" approved="yes">
+      <trans-unit id="_msg245" approved="yes">
         <source xml:space="preserve">Remove this hangar? (Downloaded aircraft will be deleted from your computer)</source>
         <target xml:space="preserve">Bu hangar kaldırılsın mı? (İndirilen uçak bilgisayarınızdan silinecektir)</target>
         <context-group purpose="location"><context context-type="linenumber">142</context></context-group>
@@ -799,7 +1349,7 @@ Yerel yol: %2</target>
   </body></file>
   <file original="/home/devel/FGFS/flightgear/src/GUI/qml/DidMigrateOfficialCatalogNotification.qml" datatype="plaintext" source-language="en" target-language="tr"><body>
     <group restype="x-trolltech-linguist-context" resname="DidMigrateOfficialCatalogNotification">
-      <trans-unit id="_msg141" approved="yes">
+      <trans-unit id="_msg246" approved="yes">
         <source xml:space="preserve">An updated version of the official aircraft hangar &apos;%2&apos; was automatically installed. Existing aircraft have been marked for update, &lt;a href=%1&gt;click here to update them all&lt;/a&gt;</source>
         <target xml:space="preserve">Resmi uçak hangarının &apos;%2&apos; güncellenmiş bir versiyonu otomatik olarak kuruldu. Mevcut uçaklar güncelleme için işaretlendi, &lt;a href=%1&gt;hepsini güncellemek için burayı tıklayın&lt;/a&gt;</target>
         <context-group purpose="location"><context context-type="linenumber">10</context></context-group>
@@ -808,7 +1358,7 @@ Yerel yol: %2</target>
   </body></file>
   <file original="/home/devel/FGFS/flightgear/src/GUI/qml/DidMigrateOtherCatalogNotification.qml" datatype="plaintext" source-language="en" target-language="tr"><body>
     <group restype="x-trolltech-linguist-context" resname="DidMigrateOtherCatalogNotification">
-      <trans-unit id="_msg142" approved="yes">
+      <trans-unit id="_msg247" approved="yes">
         <source xml:space="preserve">An updated version of the hangar &apos;%2&apos; was automatically installed. Existing aircraft have been marked for update, &lt;a href=%1&gt;click here to update them all&lt;/a&gt;</source>
         <target xml:space="preserve">&apos;%2&apos; hangarının güncellenmiş bir sürümü otomatik olarak kuruldu. Mevcut uçaklar güncelleme için işaretlendi, &lt;a href=%1&gt;hepsini güncellemek için burayı tıklayın&lt;/a&gt;</target>
         <context-group purpose="location"><context context-type="linenumber">10</context></context-group>
@@ -817,7 +1367,7 @@ Yerel yol: %2</target>
   </body></file>
   <file original="/home/devel/FGFS/flightgear/src/GUI/qml/DownloadsInDocumentsWarning.qml" datatype="plaintext" source-language="en" target-language="tr"><body>
     <group restype="x-trolltech-linguist-context" resname="DownloadsInDocumentsWarning">
-      <trans-unit id="_msg143" approved="yes">
+      <trans-unit id="_msg248" approved="yes">
         <source xml:space="preserve">&lt;p&gt;FlightGear previously downloaded aircraft and scenery to a folder within your &apos;Documents&apos; folder. This can cause problems with some security features of Windows, so a new location is now recommended.&lt;/p&gt;&lt;br/&gt;&lt;p&gt;To keep your existing aircraft and scenery downloads, please move the files from &lt;u&gt;&lt;a href=%1&gt;the old location&lt;/a&gt;&lt;/u&gt; to &lt;u&gt;&lt;a href=%2&gt;the new location&lt;/a&gt;&lt;/u&gt;&lt;/p&gt;</source>
         <target xml:space="preserve">&lt;p&gt;FlightGear daha önce uçak ve manzarayı &apos;Belgeler&apos; klasörünüzdeki bir klasöre indirdi. Bu, Windows&apos;un bazı güvenlik özelliklerinde sorunlara neden olabilir, bu nedenle şimdi yeni bir konum önerilir.&lt;/p&gt;&lt;br/&gt;&lt;p&gt;Mevcut uçak ve manzara indirmelerinizi saklamak için lütfen dosyaları &lt;u&gt;&lt;a href=%1&gt; eski konumundan&lt;/a&gt;&lt;/u&gt; &lt;u&gt;&lt;a href=%2&gt;yeni konumuna taşıyın&lt;/a&gt;&lt;/u&gt;&lt;/p&gt;</target>
         <context-group purpose="location"><context context-type="linenumber">10</context></context-group>
@@ -826,710 +1376,560 @@ Yerel yol: %2</target>
   </body></file>
   <file original="/home/devel/FGFS/flightgear/src/GUI/qml/DragToReorderButton.qml" datatype="plaintext" source-language="en" target-language="tr"><body>
     <group restype="x-trolltech-linguist-context" resname="DragToReorderButton">
-      <trans-unit id="_msg144" approved="yes">
+      <trans-unit id="_msg249" approved="yes">
         <source xml:space="preserve">Move up</source>
         <target xml:space="preserve">Yukarı taşı</target>
-        <context-group purpose="location"><context context-type="linenumber">51</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">53</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg145" approved="yes">
+      <trans-unit id="_msg250" approved="yes">
         <source xml:space="preserve">Move down</source>
         <target xml:space="preserve">Aşağı taşı</target>
-        <context-group purpose="location"><context context-type="linenumber">51</context></context-group>
-      </trans-unit>
-    </group>
-  </body></file>
-  <file original="/home/devel/FGFS/flightgear/src/GUI/qml/Environment.qml" datatype="plaintext" source-language="en" target-language="tr"><body>
-    <group restype="x-trolltech-linguist-context" resname="Environment">
-      <trans-unit id="_msg146" approved="yes">
-        <source xml:space="preserve">Time &amp; Date</source>
-        <target xml:space="preserve">Saat ve Tarih</target>
-        <context-group purpose="location"><context context-type="linenumber">33</context></context-group>
-      </trans-unit>
-      <trans-unit id="_msg147" approved="yes">
-        <source xml:space="preserve">Time of day</source>
-        <target xml:space="preserve">Günün zamanı</target>
-        <context-group purpose="location"><context context-type="linenumber">40</context></context-group>
-      </trans-unit>
-      <trans-unit id="_msg148" approved="yes">
-        <source xml:space="preserve">Select the time of day used when the simulator starts, or enter a custom date and time.</source>
-        <target xml:space="preserve">Simülatör başladığında kullanılan günün saatini seçin veya özel bir tarih ve saat girin.</target>
-        <context-group purpose="location"><context context-type="linenumber">41</context></context-group>
-      </trans-unit>
-      <trans-unit id="_msg149" approved="yes">
-        <source xml:space="preserve">Current time</source>
-        <target xml:space="preserve">Şimdiki zaman</target>
-        <context-group purpose="location"><context context-type="linenumber">43</context></context-group>
-      </trans-unit>
-      <trans-unit id="_msg150" approved="yes">
-        <source xml:space="preserve">Dawn</source>
-        <target xml:space="preserve">Şafak</target>
-        <context-group purpose="location"><context context-type="linenumber">43</context></context-group>
-      </trans-unit>
-      <trans-unit id="_msg151" approved="yes">
-        <source xml:space="preserve">Morning</source>
-        <target xml:space="preserve">Sabah</target>
-        <context-group purpose="location"><context context-type="linenumber">43</context></context-group>
-      </trans-unit>
-      <trans-unit id="_msg152" approved="yes">
-        <source xml:space="preserve">Noon</source>
-        <target xml:space="preserve">Öğle vakti</target>
-        <context-group purpose="location"><context context-type="linenumber">43</context></context-group>
-      </trans-unit>
-      <trans-unit id="_msg153" approved="yes">
-        <source xml:space="preserve">Afternoon</source>
-        <target xml:space="preserve">Öğleden sonra</target>
-        <context-group purpose="location"><context context-type="linenumber">44</context></context-group>
-      </trans-unit>
-      <trans-unit id="_msg154" approved="yes">
-        <source xml:space="preserve">Dusk</source>
-        <target xml:space="preserve">Alacakaranlık</target>
-        <context-group purpose="location"><context context-type="linenumber">44</context></context-group>
-      </trans-unit>
-      <trans-unit id="_msg155" approved="yes">
-        <source xml:space="preserve">Evening</source>
-        <target xml:space="preserve">Akşam</target>
-        <context-group purpose="location"><context context-type="linenumber">44</context></context-group>
-      </trans-unit>
-      <trans-unit id="_msg156" approved="yes">
-        <source xml:space="preserve">Midnight</source>
-        <target xml:space="preserve">Gece yarısı</target>
-        <context-group purpose="location"><context context-type="linenumber">45</context></context-group>
-      </trans-unit>
-      <trans-unit id="_msg157" approved="yes">
-        <source xml:space="preserve">Custom time &amp; date</source>
-        <target xml:space="preserve">Özel saat ve tarih</target>
-        <context-group purpose="location"><context context-type="linenumber">45</context></context-group>
-        <context-group purpose="location"><context context-type="linenumber">67</context></context-group>
-      </trans-unit>
-      <trans-unit id="_msg158" approved="yes">
-        <source xml:space="preserve">Enter a date and time to begin the flight at. By default this is in local time for the chosen starting location - use the option below to request a time in GMT / UTC.</source>
-        <target xml:space="preserve">Uçuşun başlayacağı tarih ve saati girin. Varsayılan olarak bu, seçilen başlangıç konumu için yerel saate göredir - GMT / UTC&apos;de bir saat istemek için aşağıdaki seçeneği kullanın.</target>
-        <context-group purpose="location"><context context-type="linenumber">69</context></context-group>
-      </trans-unit>
-      <trans-unit id="_msg159" approved="yes">
-        <source xml:space="preserve">Custom time is GMT / UTC</source>
-        <target xml:space="preserve">Özel zaman GMT / UTC&apos;dir</target>
-        <context-group purpose="location"><context context-type="linenumber">77</context></context-group>
-      </trans-unit>
-      <trans-unit id="_msg160" approved="yes">
-        <source xml:space="preserve">Season</source>
-        <target xml:space="preserve">Sezon</target>
-        <context-group purpose="location"><context context-type="linenumber">84</context></context-group>
-      </trans-unit>
-      <trans-unit id="_msg161" approved="yes">
-        <source xml:space="preserve">Select if normal (summer) or winter textures are used for the scenery. This does not affect other aspects of the simulation at present, such as icing or weather simulation</source>
-        <target xml:space="preserve">Manzara için normal (yaz) veya kış dokularının kullanılıp kullanılmayacağını seçin. Bu, şu anda simülasyonun buzlanma veya hava durumu simülasyonu gibi diğer yönlerini etkilemez</target>
-        <context-group purpose="location"><context context-type="linenumber">85</context></context-group>
-      </trans-unit>
-      <trans-unit id="_msg162" approved="yes">
-        <source xml:space="preserve">Summer (default)</source>
-        <target xml:space="preserve">Yaz (varsayılan)</target>
-        <context-group purpose="location"><context context-type="linenumber">89</context></context-group>
-      </trans-unit>
-      <trans-unit id="_msg163" approved="yes">
-        <source xml:space="preserve">Winter</source>
-        <target xml:space="preserve">Kış</target>
-        <context-group purpose="location"><context context-type="linenumber">89</context></context-group>
-      </trans-unit>
-      <trans-unit id="_msg164" approved="yes">
-        <source xml:space="preserve">Weather</source>
-        <target xml:space="preserve">Hava Durumu</target>
-        <context-group purpose="location"><context context-type="linenumber">116</context></context-group>
-      </trans-unit>
-      <trans-unit id="_msg165" approved="yes">
-        <source xml:space="preserve">Advanced weather modelling</source>
-        <target xml:space="preserve">Gelişmiş hava durumu modellemesi</target>
-        <context-group purpose="location"><context context-type="linenumber">122</context></context-group>
-      </trans-unit>
-      <trans-unit id="_msg166" approved="yes">
-        <source xml:space="preserve">Detailed weather simulation based on local terrain and atmospheric simulation. Note that using advanced weather with real-world weather data (METAR) information may not show exactly the conditions recorded, and is not recommended for multi-player flight since the weather simulation is not shared over the network.</source>
-        <target xml:space="preserve">Yerel arazi ve atmosferik simülasyona dayalı ayrıntılı hava simülasyonu. Gelişmiş hava durumunu gerçek dünya hava durumu verileri (METAR) bilgileriyle kullanmanın, kaydedilen koşulları tam olarak göstermeyebileceğini ve hava durumu simülasyonu ağ üzerinden paylaşılmadığından çok oyunculu uçuş için önerilmediğini unutmayın.</target>
-        <context-group purpose="location"><context context-type="linenumber">123</context></context-group>
-      </trans-unit>
-      <trans-unit id="_msg167" approved="yes">
-        <source xml:space="preserve">Real-world weather</source>
-        <target xml:space="preserve">Gerçek dünya hava durumu</target>
-        <context-group purpose="location"><context context-type="linenumber">133</context></context-group>
-      </trans-unit>
-      <trans-unit id="_msg168" approved="yes">
-        <source xml:space="preserve">Download real-world weather from the NOAA servers based on location.</source>
-        <target xml:space="preserve">Konuma göre NOAA sunucularından gerçek dünya hava durumunu indirin.</target>
-        <context-group purpose="location"><context context-type="linenumber">134</context></context-group>
-      </trans-unit>
-      <trans-unit id="_msg169" approved="yes">
-        <source xml:space="preserve">Weather scenario</source>
-        <target xml:space="preserve">Hava durumu senaryosu</target>
-        <context-group purpose="location"><context context-type="linenumber">142</context></context-group>
-      </trans-unit>
-      <trans-unit id="_msg170" approved="yes">
-        <source xml:space="preserve">METAR</source>
-        <target xml:space="preserve">METAR</target>
-        <context-group purpose="location"><context context-type="linenumber">162</context></context-group>
-      </trans-unit>
-      <trans-unit id="_msg171" approved="yes">
-        <source xml:space="preserve">Enter a custom METAR string, e.g: &apos;%1&apos;</source>
-        <target xml:space="preserve">Özel bir METAR dizesi girin, örneğin: &apos;%1&apos;</target>
-        <context-group purpose="location"><context context-type="linenumber">166</context></context-group>
-      </trans-unit>
-      <trans-unit id="_msg172" approved="yes">
-        <source xml:space="preserve">The entered METAR string doesn&apos;t seem to be valid.</source>
-        <target xml:space="preserve">Girilen METAR dizesi geçerli görünmüyor.</target>
-        <context-group purpose="location"><context context-type="linenumber">167</context></context-group>
-      </trans-unit>
-      <trans-unit id="_msg173" approved="yes">
-        <source xml:space="preserve">advanced weather</source>
-        <target xml:space="preserve">gelişmiş hava</target>
-        <context-group purpose="location"><context context-type="linenumber">235</context></context-group>
-      </trans-unit>
-      <trans-unit id="_msg174" approved="yes">
-        <source xml:space="preserve">real-world weather</source>
-        <target xml:space="preserve">gerçek dünya hava durumu</target>
-        <context-group purpose="location"><context context-type="linenumber">236</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">53</context></context-group>
       </trans-unit>
     </group>
   </body></file>
   <file original="/home/devel/FGFS/flightgear/src/GUI/qml/FirstRun.qml" datatype="plaintext" source-language="en" target-language="tr"><body>
     <group restype="x-trolltech-linguist-context" resname="FirstRun">
-      <trans-unit id="_msg175" approved="yes">
+      <trans-unit id="_msg251" approved="yes">
         <source xml:space="preserve">Welcome to FlightGear, the open source flight simulator. This software is the work of volunteers. We hope you enjoy it. If you find problems or would like to contribute, please &lt;a %1&gt;visit our forum&lt;/a&gt;.</source>
         <target xml:space="preserve">Açık kaynaklı uçuş simülatörü Flightgear&apos;a hoş geldiniz. Bu yazılım gönüllülerin eseridir. Bunu beğeneceğinizi umuyoruz. Sorun bulursanız veya katkıda bulunmak istiyorsanız lütfen &lt;a %1&gt;forumumuzu ziyaret edin&lt;/a&gt;.</target>
-        <context-group purpose="location"><context context-type="linenumber">96</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">99</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg176" approved="yes">
+      <trans-unit id="_msg252" approved="yes">
         <source xml:space="preserve">FlightGear is Free software, licensed under the &lt;a %1&gt;GNU General Public License&lt;/a&gt;. You are free to use, customize and fix the software; and share your changes with the community.</source>
         <target xml:space="preserve">FlightGear, &lt;a %1&gt;GNU Genel Kamu Lisansı&lt;/a&gt; altında lisanslanmış özgür bir yazılımdır. Kullanmak için, özelleştirme ve yazılım düzeltme; ve toplumla değişiklikleri paylaşmak serbesttir.</target>
-        <context-group purpose="location"><context context-type="linenumber">114</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">117</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg177" approved="yes">
+      <trans-unit id="_msg253" approved="yes">
         <source xml:space="preserve">FlightGear can automatically report crashes and errors to the development team, which helps to improve the software for everyone. This reporting is anonymous but contains information such as the aircraft in use, your operating system and graphics driver. You can enable or disable this reporting in the &apos;Settings&apos; page.</source>
         <target xml:space="preserve">FlightGear, çökmeleri ve hataları geliştirme ekibine otomatik olarak bildirebilir ve bu da yazılımı herkes için geliştirmeye yardımcı olur. Bu raporlama anonimdir, ancak kullanılan uçak, işletim sisteminiz ve grafik sürücünüz gibi bilgileri içerir. Bu raporlamayı &apos;Ayarlar&apos; sayfasından etkinleştirebilir veya devre dışı bırakabilirsiniz.</target>
-        <context-group purpose="location"><context context-type="linenumber">129</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">132</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg178" approved="yes">
+      <trans-unit id="_msg254" approved="yes">
         <source xml:space="preserve">Okay</source>
         <target xml:space="preserve">Tamam</target>
-        <context-group purpose="location"><context context-type="linenumber">142</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">145</context></context-group>
       </trans-unit>
     </group>
   </body></file>
   <file original="/home/devel/FGFS/flightgear/src/GUI/qml/FlightPlan.qml" datatype="plaintext" source-language="en" target-language="tr"><body>
     <group restype="x-trolltech-linguist-context" resname="FlightPlan">
-      <trans-unit id="_msg179" approved="yes">
+      <trans-unit id="_msg255" approved="yes">
         <source xml:space="preserve">Fly with a flight-plan</source>
         <target xml:space="preserve">Bir uçuş planı ile uçun</target>
-        <context-group purpose="location"><context context-type="linenumber">46</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">47</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg180" approved="yes">
+      <trans-unit id="_msg256" approved="yes">
         <source xml:space="preserve">Load</source>
         <target xml:space="preserve">Yükle</target>
-        <context-group purpose="location"><context context-type="linenumber">56</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">57</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg181" approved="yes">
+      <trans-unit id="_msg257" approved="yes">
         <source xml:space="preserve">Save</source>
         <target xml:space="preserve">Kaydet</target>
-        <context-group purpose="location"><context context-type="linenumber">71</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">72</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg182" approved="yes">
+      <trans-unit id="_msg258" approved="yes">
         <source xml:space="preserve">Clear</source>
         <target xml:space="preserve">Temizle</target>
-        <context-group purpose="location"><context context-type="linenumber">76</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">77</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg183" approved="yes">
+      <trans-unit id="_msg259" approved="yes">
         <source xml:space="preserve">Aircraft &amp; flight information</source>
         <target xml:space="preserve">Uçak ve uçuş bilgileri</target>
-        <context-group purpose="location"><context context-type="linenumber">85</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">86</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg184" approved="yes">
+      <trans-unit id="_msg260" approved="yes">
         <source xml:space="preserve">Callsign / Flight No.</source>
         <target xml:space="preserve">Çağrı İşareti / Uçuş No.</target>
-        <context-group purpose="location"><context context-type="linenumber">97</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">98</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg185" approved="yes">
+      <trans-unit id="_msg261" approved="yes">
         <source xml:space="preserve">Aircraft type:</source>
         <target xml:space="preserve">Uçak tipi:</target>
-        <context-group purpose="location"><context context-type="linenumber">116</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">117</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg186" approved="yes">
+      <trans-unit id="_msg262" approved="yes">
         <source xml:space="preserve">Flight rules:</source>
         <target xml:space="preserve">Uçuş kuralları:</target>
-        <context-group purpose="location"><context context-type="linenumber">138</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">139</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg187" approved="yes">
+      <trans-unit id="_msg263" approved="yes">
         <source xml:space="preserve">VFR</source>
         <target xml:space="preserve">VFR</target>
-        <context-group purpose="location"><context context-type="linenumber">139</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">140</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg188" approved="yes">
+      <trans-unit id="_msg264" approved="yes">
         <source xml:space="preserve">IFR</source>
         <target xml:space="preserve">IFR</target>
-        <context-group purpose="location"><context context-type="linenumber">139</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">140</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg189" approved="yes">
+      <trans-unit id="_msg265" approved="yes">
         <source xml:space="preserve">Flight type:</source>
         <target xml:space="preserve">Uçuş tipi:</target>
-        <context-group purpose="location"><context context-type="linenumber">154</context></context-group>
-      </trans-unit>
-      <trans-unit id="_msg190" approved="yes">
-        <source xml:space="preserve">Scheduled</source>
-        <target xml:space="preserve">Zamanlanmış</target>
         <context-group purpose="location"><context context-type="linenumber">155</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg191" approved="yes">
-        <source xml:space="preserve">Non-scheduled</source>
-        <target xml:space="preserve">Programsız</target>
+      <trans-unit id="_msg266" approved="yes">
+        <source xml:space="preserve">Scheduled</source>
+        <target xml:space="preserve">Zamanlanmış</target>
         <context-group purpose="location"><context context-type="linenumber">156</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg192" approved="yes">
-        <source xml:space="preserve">General aviation</source>
-        <target xml:space="preserve">Genel Havacılık</target>
+      <trans-unit id="_msg267" approved="yes">
+        <source xml:space="preserve">Non-scheduled</source>
+        <target xml:space="preserve">Programsız</target>
         <context-group purpose="location"><context context-type="linenumber">157</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg193" approved="yes">
-        <source xml:space="preserve">Military</source>
-        <target xml:space="preserve">Askeri</target>
+      <trans-unit id="_msg268" approved="yes">
+        <source xml:space="preserve">General aviation</source>
+        <target xml:space="preserve">Genel Havacılık</target>
         <context-group purpose="location"><context context-type="linenumber">158</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg194" approved="yes">
-        <source xml:space="preserve">Other</source>
-        <target xml:space="preserve">Diğer</target>
+      <trans-unit id="_msg269" approved="yes">
+        <source xml:space="preserve">Military</source>
+        <target xml:space="preserve">Askeri</target>
         <context-group purpose="location"><context context-type="linenumber">159</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg195" approved="yes">
+      <trans-unit id="_msg270" approved="yes">
+        <source xml:space="preserve">Other</source>
+        <target xml:space="preserve">Diğer</target>
+        <context-group purpose="location"><context context-type="linenumber">160</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg271" approved="yes">
         <source xml:space="preserve">Wake turbulence category:</source>
         <target xml:space="preserve">Uyandırma türbülans kategorisi:</target>
-        <context-group purpose="location"><context context-type="linenumber">178</context></context-group>
-      </trans-unit>
-      <trans-unit id="_msg196" approved="yes">
-        <source xml:space="preserve">Light</source>
-        <target xml:space="preserve">Hafif</target>
         <context-group purpose="location"><context context-type="linenumber">179</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg197" approved="yes">
-        <source xml:space="preserve">Medium</source>
-        <target xml:space="preserve">Orta</target>
+      <trans-unit id="_msg272" approved="yes">
+        <source xml:space="preserve">Light</source>
+        <target xml:space="preserve">Hafif</target>
         <context-group purpose="location"><context context-type="linenumber">180</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg198" approved="yes">
-        <source xml:space="preserve">Heavy</source>
-        <target xml:space="preserve">Ağır</target>
+      <trans-unit id="_msg273" approved="yes">
+        <source xml:space="preserve">Medium</source>
+        <target xml:space="preserve">Orta</target>
         <context-group purpose="location"><context context-type="linenumber">181</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg199" approved="yes">
-        <source xml:space="preserve">Jumbo</source>
-        <target xml:space="preserve">Jumbo</target>
+      <trans-unit id="_msg274" approved="yes">
+        <source xml:space="preserve">Heavy</source>
+        <target xml:space="preserve">Ağır</target>
         <context-group purpose="location"><context context-type="linenumber">182</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg200" approved="yes">
+      <trans-unit id="_msg275" approved="yes">
+        <source xml:space="preserve">Jumbo</source>
+        <target xml:space="preserve">Jumbo</target>
+        <context-group purpose="location"><context context-type="linenumber">183</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg276" approved="yes">
         <source xml:space="preserve">Route</source>
         <target xml:space="preserve">Rota</target>
-        <context-group purpose="location"><context context-type="linenumber">190</context></context-group>
-        <context-group purpose="location"><context context-type="linenumber">282</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">191</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">283</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg201" approved="yes">
+      <trans-unit id="_msg277" approved="yes">
         <source xml:space="preserve">Departure airport:</source>
         <target xml:space="preserve">Kalkış Havalimanı:</target>
-        <context-group purpose="location"><context context-type="linenumber">201</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">202</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg202" approved="yes">
+      <trans-unit id="_msg278" approved="yes">
         <source xml:space="preserve">Departure time:</source>
         <target xml:space="preserve">Hareket saati:</target>
-        <context-group purpose="location"><context context-type="linenumber">225</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">226</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg203" approved="yes">
+      <trans-unit id="_msg279" approved="yes">
         <source xml:space="preserve">The flight-plan departure airport (%1) is different to the initial location (%2). Click here to set the initial location to the flight-plan&apos;s airport.</source>
         <target xml:space="preserve">Uçuş planı kalkış havalimanı (%1), başlangıç konumundan (%2) farklıdır. Uçuş planının havalimanına ilk konumu ayarlamak için buraya tıklayın.</target>
-        <context-group purpose="location"><context context-type="linenumber">239</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">240</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg204" approved="yes">
+      <trans-unit id="_msg280" approved="yes">
         <source xml:space="preserve">Cruise speed:</source>
         <target xml:space="preserve">Seyir hızı:</target>
-        <context-group purpose="location"><context context-type="linenumber">258</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">259</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg205" approved="yes">
+      <trans-unit id="_msg281" approved="yes">
         <source xml:space="preserve">Cruise altitude:</source>
         <target xml:space="preserve">Seyir yüksekliği:</target>
-        <context-group purpose="location"><context context-type="linenumber">273</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">274</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg206" approved="yes">
+      <trans-unit id="_msg282" approved="yes">
         <source xml:space="preserve">Generate route</source>
         <target xml:space="preserve">Rota oluştur</target>
-        <context-group purpose="location"><context context-type="linenumber">302</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">303</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg207" approved="yes">
+      <trans-unit id="_msg283" approved="yes">
         <source xml:space="preserve">Using</source>
         <target xml:space="preserve">Kullanma</target>
-        <context-group purpose="location"><context context-type="linenumber">315</context></context-group>
-      </trans-unit>
-      <trans-unit id="_msg208" approved="yes">
-        <source xml:space="preserve">High-level (Jet) airways</source>
-        <target xml:space="preserve">Yüksek seviyeli (Jet) hava yolları</target>
         <context-group purpose="location"><context context-type="linenumber">316</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg209" approved="yes">
-        <source xml:space="preserve">Low-level (Victor) airways</source>
-        <target xml:space="preserve">Düşük seviyeli (Victor) hava yolları</target>
+      <trans-unit id="_msg284" approved="yes">
+        <source xml:space="preserve">High-level (Jet) airways</source>
+        <target xml:space="preserve">Yüksek seviyeli (Jet) hava yolları</target>
         <context-group purpose="location"><context context-type="linenumber">317</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg210" approved="yes">
-        <source xml:space="preserve">High- &amp; low-level airways</source>
-        <target xml:space="preserve">Yüksek ve düşük seviyeli hava yolları</target>
+      <trans-unit id="_msg285" approved="yes">
+        <source xml:space="preserve">Low-level (Victor) airways</source>
+        <target xml:space="preserve">Düşük seviyeli (Victor) hava yolları</target>
         <context-group purpose="location"><context context-type="linenumber">318</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg211" approved="yes">
+      <trans-unit id="_msg286" approved="yes">
+        <source xml:space="preserve">High- &amp; low-level airways</source>
+        <target xml:space="preserve">Yüksek ve düşük seviyeli hava yolları</target>
+        <context-group purpose="location"><context context-type="linenumber">319</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg287" approved="yes">
         <source xml:space="preserve">View route</source>
         <target xml:space="preserve">Rotayı görüntüle</target>
-        <context-group purpose="location"><context context-type="linenumber">323</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">324</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg212" approved="yes">
+      <trans-unit id="_msg288" approved="yes">
         <source xml:space="preserve">Clear route</source>
         <target xml:space="preserve">Rotayı temizle</target>
-        <context-group purpose="location"><context context-type="linenumber">333</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">334</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg213" approved="yes">
+      <trans-unit id="_msg289" approved="yes">
         <source xml:space="preserve">Destination airport:</source>
         <target xml:space="preserve">Hedef havaalanı:</target>
-        <context-group purpose="location"><context context-type="linenumber">361</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">362</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg214" approved="yes">
+      <trans-unit id="_msg290" approved="yes">
         <source xml:space="preserve">Estimated enroute time:</source>
         <target xml:space="preserve">Tahmini rota süresi:</target>
-        <context-group purpose="location"><context context-type="linenumber">384</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">385</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg215" approved="yes">
+      <trans-unit id="_msg291" approved="yes">
         <source xml:space="preserve">Total distance: %1</source>
         <target xml:space="preserve">Toplam mesafe: %1</target>
-        <context-group purpose="location"><context context-type="linenumber">399</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">400</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg216" approved="yes">
+      <trans-unit id="_msg292" approved="yes">
         <source xml:space="preserve">Alternate airport:</source>
         <target xml:space="preserve">Alternatif havaalanı:</target>
-        <context-group purpose="location"><context context-type="linenumber">410</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">411</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg217" approved="yes">
+      <trans-unit id="_msg293" approved="yes">
         <source xml:space="preserve">Additional information</source>
         <target xml:space="preserve">Ek Bilgiler</target>
-        <context-group purpose="location"><context context-type="linenumber">429</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">430</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg218" approved="yes">
+      <trans-unit id="_msg294" approved="yes">
         <source xml:space="preserve">Remarks</source>
         <target xml:space="preserve">Notlar</target>
-        <context-group purpose="location"><context context-type="linenumber">435</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">436</context></context-group>
       </trans-unit>
     </group>
   </body></file>
   <file original="/home/devel/FGFS/flightgear/src/GUI/qml/GettingStartedTipDisplay.qml" datatype="plaintext" source-language="en" target-language="tr"><body>
     <group restype="x-trolltech-linguist-context" resname="GettingStartedTipDisplay">
-      <trans-unit id="_msg219" approved="yes">
+      <trans-unit id="_msg295" approved="yes">
         <source xml:space="preserve">Close</source>
         <target xml:space="preserve">Kapat</target>
-        <context-group purpose="location"><context context-type="linenumber">97</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">95</context></context-group>
       </trans-unit>
     </group>
   </body></file>
   <file original="/home/devel/FGFS/flightgear/src/GUI/qml/GridToggleButton.qml" datatype="plaintext" source-language="en" target-language="tr"><body>
     <group restype="x-trolltech-linguist-context" resname="GridToggleButton">
-      <trans-unit id="_msg220" approved="yes">
+      <trans-unit id="_msg296" approved="yes">
         <source xml:space="preserve">Switch to grid view</source>
         <target xml:space="preserve">Izgara görünümüne geç</target>
-        <context-group purpose="location"><context context-type="linenumber">40</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">42</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg221" approved="yes">
+      <trans-unit id="_msg297" approved="yes">
         <source xml:space="preserve">Switch to list view</source>
         <target xml:space="preserve">Liste görünümüne geç</target>
-        <context-group purpose="location"><context context-type="linenumber">41</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">43</context></context-group>
       </trans-unit>
     </group>
   </body></file>
   <file original="/home/devel/FGFS/flightgear/src/GUI/qml/Launcher.qml" datatype="plaintext" source-language="en" target-language="tr"><body>
     <group restype="x-trolltech-linguist-context" resname="Launcher">
-      <trans-unit id="_msg222" approved="yes">
+      <trans-unit id="_msg298" approved="yes">
         <source xml:space="preserve">Summary</source>
         <target xml:space="preserve">Özet</target>
+        <context-group purpose="location"><context context-type="linenumber">10</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">34</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg299" approved="yes">
+        <source xml:space="preserve">Aircraft</source>
+        <target xml:space="preserve">Uçak</target>
         <context-group purpose="location"><context context-type="linenumber">11</context></context-group>
         <context-group purpose="location"><context context-type="linenumber">35</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg223" approved="yes">
-        <source xml:space="preserve">Aircraft</source>
-        <target xml:space="preserve">Uçak</target>
-        <context-group purpose="location"><context context-type="linenumber">12</context></context-group>
-        <context-group purpose="location"><context context-type="linenumber">36</context></context-group>
-      </trans-unit>
-      <trans-unit id="_msg224" approved="yes">
+      <trans-unit id="_msg300" approved="yes">
         <source xml:space="preserve">Location</source>
         <target xml:space="preserve">Konum</target>
-        <context-group purpose="location"><context context-type="linenumber">15</context></context-group>
-        <context-group purpose="location"><context context-type="linenumber">39</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">14</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">38</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg225" approved="yes">
+      <trans-unit id="_msg301" approved="yes">
         <source xml:space="preserve">Location page disabled due to conflicting user arguments (in Settings)</source>
         <target xml:space="preserve">Çakışan kullanıcı bağımsız değişkenleri nedeniyle konum sayfası devre dışı bırakıldı (Ayarlarda)</target>
-        <context-group purpose="location"><context context-type="linenumber">18</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">17</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg226" approved="yes">
+      <trans-unit id="_msg302" approved="yes">
         <source xml:space="preserve">Environment</source>
         <target xml:space="preserve">Çevre</target>
-        <context-group purpose="location"><context context-type="linenumber">25</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">24</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg227" approved="yes">
+      <trans-unit id="_msg303" approved="yes">
         <source xml:space="preserve">Settings</source>
         <target xml:space="preserve">Ayarlar</target>
-        <context-group purpose="location"><context context-type="linenumber">26</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">25</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg228" approved="yes">
+      <trans-unit id="_msg304" approved="yes">
         <source xml:space="preserve">Add-ons</source>
         <target xml:space="preserve">Eklentiler</target>
-        <context-group purpose="location"><context context-type="linenumber">28</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">27</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg229" approved="yes">
+      <trans-unit id="_msg305" approved="yes">
         <source xml:space="preserve">Help</source>
         <target xml:space="preserve">Yardım</target>
-        <context-group purpose="location"><context context-type="linenumber">29</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">28</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg230" approved="yes">
+      <trans-unit id="_msg306" approved="yes">
         <source xml:space="preserve">Fly!</source>
         <target xml:space="preserve">Uçuş!</target>
-        <context-group purpose="location"><context context-type="linenumber">192</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">201</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg231" approved="yes">
+      <trans-unit id="_msg307" approved="yes">
         <source xml:space="preserve">Open saved configuration...</source>
         <target xml:space="preserve">Kaydedilmiş yapılandırmayı aç...</target>
-        <context-group purpose="location"><context context-type="linenumber">198</context></context-group>
-      </trans-unit>
-      <trans-unit id="_msg232" approved="yes">
-        <source xml:space="preserve">Save configuration as...</source>
-        <target xml:space="preserve">Yapılandırmayı farklı kaydet...</target>
-        <context-group purpose="location"><context context-type="linenumber">200</context></context-group>
-      </trans-unit>
-      <trans-unit id="_msg233" approved="yes">
-        <source xml:space="preserve">Flight-planning</source>
-        <target xml:space="preserve">Uçuş planlama</target>
-        <context-group purpose="location"><context context-type="linenumber">203</context></context-group>
-      </trans-unit>
-      <trans-unit id="_msg234" approved="yes">
-        <source xml:space="preserve">View command line</source>
-        <target xml:space="preserve">Komut satırını görüntüle</target>
-        <context-group purpose="location"><context context-type="linenumber">205</context></context-group>
-      </trans-unit>
-      <trans-unit id="_msg235" approved="yes">
-        <source xml:space="preserve">Select data files location...</source>
-        <target xml:space="preserve">Veri dosyaları konumunu seçin...</target>
-        <context-group purpose="location"><context context-type="linenumber">206</context></context-group>
-      </trans-unit>
-      <trans-unit id="_msg236" approved="yes">
-        <source xml:space="preserve">Restore default settings...</source>
-        <target xml:space="preserve">Ayarları varsayılan duruma getir...</target>
         <context-group purpose="location"><context context-type="linenumber">207</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg237" approved="yes">
+      <trans-unit id="_msg308" approved="yes">
+        <source xml:space="preserve">Save configuration as...</source>
+        <target xml:space="preserve">Yapılandırmayı farklı kaydet...</target>
+        <context-group purpose="location"><context context-type="linenumber">209</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg309" approved="yes">
+        <source xml:space="preserve">Flight-planning</source>
+        <target xml:space="preserve">Uçuş planlama</target>
+        <context-group purpose="location"><context context-type="linenumber">212</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg310" approved="yes">
+        <source xml:space="preserve">View command line</source>
+        <target xml:space="preserve">Komut satırını görüntüle</target>
+        <context-group purpose="location"><context context-type="linenumber">214</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg311" approved="yes">
+        <source xml:space="preserve">Select data files location...</source>
+        <target xml:space="preserve">Veri dosyaları konumunu seçin...</target>
+        <context-group purpose="location"><context context-type="linenumber">215</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg312" approved="yes">
+        <source xml:space="preserve">Restore default settings...</source>
+        <target xml:space="preserve">Ayarları varsayılan duruma getir...</target>
+        <context-group purpose="location"><context context-type="linenumber">216</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg313" approved="yes">
         <source xml:space="preserve">Quit</source>
         <target xml:space="preserve">Çık</target>
-        <context-group purpose="location"><context context-type="linenumber">209</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">218</context></context-group>
       </trans-unit>
     </group>
   </body></file>
   <file original="/home/devel/FGFS/flightgear/src/GUI/qml/Location.qml" datatype="plaintext" source-language="en" target-language="tr"><body>
     <group restype="x-trolltech-linguist-context" resname="Location">
-      <trans-unit id="_msg238" approved="yes">
+      <trans-unit id="_msg314" approved="yes">
         <source xml:space="preserve">Location</source>
         <target xml:space="preserve">Konum</target>
-        <context-group purpose="location"><context context-type="linenumber">183</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">185</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg239" approved="yes">
+      <trans-unit id="_msg315" approved="yes">
         <source xml:space="preserve">Search for an airport or navaid</source>
         <target xml:space="preserve">Bir havaalanı veya navaid arayın</target>
-        <context-group purpose="location"><context context-type="linenumber">202</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">204</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg240" approved="yes">
+      <trans-unit id="_msg316" approved="yes">
         <source xml:space="preserve">View available aircraft carriers to start at.</source>
         <target xml:space="preserve">Başlamak için mevcut uçak gemilerini görüntüleyin.</target>
-        <context-group purpose="location"><context context-type="linenumber">251</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">246</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg241" approved="yes">
+      <trans-unit id="_msg317" approved="yes">
         <source xml:space="preserve">Enter the name, partial name or ident of a navaid or fix, or an airport name or ICAO identifier. Alternatively, enter a latitude &amp; longitude: for example 53.4,-3.4 or 18.4S, 87.23W</source>
         <target xml:space="preserve">Bir seyrüsefer yardımcısının veya sabitinin adını, kısmi adını veya kimliğini veya bir havaalanı adını veya ICAO tanımlayıcısını girin. Alternatif olarak, bir enlem ve boylam girin: örneğin 53.4, -3.4 veya 18.4S, 87.23W</target>
-        <context-group purpose="location"><context context-type="linenumber">263</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">258</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg242" approved="yes">
+      <trans-unit id="_msg318" approved="yes">
         <source xml:space="preserve">Searching</source>
         <target xml:space="preserve">Arıyor</target>
-        <context-group purpose="location"><context context-type="linenumber">294</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">290</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg243" approved="yes">
+      <trans-unit id="_msg319" approved="yes">
         <source xml:space="preserve">No results for found search &apos;%1&apos;</source>
         <target xml:space="preserve">&apos;%1&apos; araması için sonuç bulunamadı</target>
-        <context-group purpose="location"><context context-type="linenumber">314</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">310</context></context-group>
       </trans-unit>
     </group>
   </body></file>
   <file original="/home/devel/FGFS/flightgear/src/GUI/qml/LocationAirportView.qml" datatype="plaintext" source-language="en" target-language="tr"><body>
     <group restype="x-trolltech-linguist-context" resname="LocationAirportView">
-      <trans-unit id="_msg244" approved="yes">
+      <trans-unit id="_msg320" approved="yes">
         <source xml:space="preserve">Click here to select a runway or parking position, and drag to pan. Mouse-wheel zooms in and out.</source>
         <target xml:space="preserve">Bir pist veya park pozisyonu seçmek için buraya tıklayın ve kaydırmak için sürükleyin. Fare tekerleği yakınlaştırır ve uzaklaştırır.</target>
-        <context-group purpose="location"><context context-type="linenumber">47</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">46</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg245" approved="yes">
+      <trans-unit id="_msg321" approved="yes">
         <source xml:space="preserve">Heliport: </source>
         <target xml:space="preserve">Helikopter pisti: </target>
-        <context-group purpose="location"><context context-type="linenumber">114</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">113</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg246" approved="yes">
+      <trans-unit id="_msg322" approved="yes">
         <source xml:space="preserve">Airport: </source>
         <target xml:space="preserve">Havalimanı: </target>
-        <context-group purpose="location"><context context-type="linenumber">115</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">114</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg247" approved="yes">
+      <trans-unit id="_msg323" approved="yes">
         <source xml:space="preserve">Runway</source>
         <target xml:space="preserve">Pist</target>
-        <context-group purpose="location"><context context-type="linenumber">134</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">133</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg248" approved="yes">
+      <trans-unit id="_msg324" approved="yes">
         <source xml:space="preserve">Active</source>
         <target xml:space="preserve">Aktif</target>
-        <context-group purpose="location"><context context-type="linenumber">144</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">143</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg249" approved="yes">
+      <trans-unit id="_msg325" approved="yes">
         <source xml:space="preserve">On final approach</source>
         <target xml:space="preserve">Son yaklaşmada</target>
-        <context-group purpose="location"><context context-type="linenumber">196</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">195</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg250" approved="yes">
+      <trans-unit id="_msg326" approved="yes">
         <source xml:space="preserve">At</source>
         <target xml:space="preserve">De</target>
-        <context-group purpose="location"><context context-type="linenumber">213</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">212</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg251" approved="yes">
+      <trans-unit id="_msg327" approved="yes">
         <source xml:space="preserve"> from the threshold</source>
         <target xml:space="preserve"> eşikten</target>
-        <context-group purpose="location"><context context-type="linenumber">221</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">220</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg252" approved="yes">
+      <trans-unit id="_msg328" approved="yes">
         <source xml:space="preserve">Airspeed:</source>
         <target xml:space="preserve">Hava hızı:</target>
-        <context-group purpose="location"><context context-type="linenumber">240</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">239</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg253" approved="yes">
+      <trans-unit id="_msg329" approved="yes">
         <source xml:space="preserve">Tune navigation radio (NAV1) to runway localizer</source>
         <target xml:space="preserve">Navigasyon radyosunu (NAV1) pist yerelleştiriciye ayarlayın</target>
-        <context-group purpose="location"><context context-type="linenumber">263</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">262</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg254" approved="yes">
+      <trans-unit id="_msg330" approved="yes">
         <source xml:space="preserve">Pad</source>
         <target xml:space="preserve">Ped</target>
-        <context-group purpose="location"><context context-type="linenumber">288</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">287</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg255" approved="yes">
+      <trans-unit id="_msg331" approved="yes">
         <source xml:space="preserve">Parking</source>
         <target xml:space="preserve">Park</target>
-        <context-group purpose="location"><context context-type="linenumber">343</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">342</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg256" approved="yes">
+      <trans-unit id="_msg332" approved="yes">
         <source xml:space="preserve">Available</source>
         <target xml:space="preserve">Kullanılabilir</target>
-        <context-group purpose="location"><context context-type="linenumber">353</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">352</context></context-group>
       </trans-unit>
     </group>
   </body></file>
   <file original="/home/devel/FGFS/flightgear/src/GUI/qml/LocationAltitudeRow.qml" datatype="plaintext" source-language="en" target-language="tr"><body>
     <group restype="x-trolltech-linguist-context" resname="LocationAltitudeRow">
-      <trans-unit id="_msg257" approved="yes">
+      <trans-unit id="_msg333" approved="yes">
         <source xml:space="preserve">Altitude:</source>
         <target xml:space="preserve">Rakım:</target>
-        <context-group purpose="location"><context context-type="linenumber">28</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">27</context></context-group>
       </trans-unit>
     </group>
   </body></file>
   <file original="/home/devel/FGFS/flightgear/src/GUI/qml/LocationCarrierView.qml" datatype="plaintext" source-language="en" target-language="tr"><body>
     <group restype="x-trolltech-linguist-context" resname="LocationCarrierView">
-      <trans-unit id="_msg258" approved="yes">
+      <trans-unit id="_msg334" approved="yes">
         <source xml:space="preserve">Carrier: %1</source>
         <target xml:space="preserve">Taşıyıcı: %1</target>
-        <context-group purpose="location"><context context-type="linenumber">76</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">75</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg259" approved="yes">
+      <trans-unit id="_msg335" approved="yes">
         <source xml:space="preserve">On final approach</source>
         <target xml:space="preserve">Son yaklaşmada</target>
-        <context-group purpose="location"><context context-type="linenumber">102</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">101</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg260" approved="yes">
+      <trans-unit id="_msg336" approved="yes">
         <source xml:space="preserve">Abeam carrier at 180 degrees</source>
         <target xml:space="preserve">180 derecede Dik taşıyıcı</target>
-        <context-group purpose="location"><context context-type="linenumber">127</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">126</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg261" approved="yes">
+      <trans-unit id="_msg337" approved="yes">
         <source xml:space="preserve">On deck</source>
         <target xml:space="preserve">Güvertede</target>
-        <context-group purpose="location"><context context-type="linenumber">160</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">159</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg262" approved="yes">
+      <trans-unit id="_msg338" approved="yes">
         <source xml:space="preserve">at</source>
         <target xml:space="preserve">de</target>
-        <context-group purpose="location"><context context-type="linenumber">222</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">221</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg263" approved="yes">
+      <trans-unit id="_msg339" approved="yes">
         <source xml:space="preserve"> from the FLOLS (aka the ball)</source>
         <target xml:space="preserve"> FLOLS&apos;tan (diğer adıyla top)</target>
-        <context-group purpose="location"><context context-type="linenumber">230</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">229</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg264" approved="yes">
+      <trans-unit id="_msg340" approved="yes">
         <source xml:space="preserve">Airspeed:</source>
         <target xml:space="preserve">Hava hızı:</target>
-        <context-group purpose="location"><context context-type="linenumber">253</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">252</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg265" approved="yes">
+      <trans-unit id="_msg341" approved="yes">
         <source xml:space="preserve">Tune navigation radio (TACAN) to carrier</source>
         <target xml:space="preserve">Navigasyon radyosunu (TACAN) operatöre ayarlayın</target>
-        <context-group purpose="location"><context context-type="linenumber">277</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">276</context></context-group>
       </trans-unit>
     </group>
   </body></file>
   <file original="/home/devel/FGFS/flightgear/src/GUI/qml/LocationNavaidView.qml" datatype="plaintext" source-language="en" target-language="tr"><body>
     <group restype="x-trolltech-linguist-context" resname="LocationNavaidView">
-      <trans-unit id="_msg266" approved="yes">
+      <trans-unit id="_msg342" approved="yes">
         <source xml:space="preserve">Drag here to move the map. Mouse-wheel zooms in and out.</source>
         <target xml:space="preserve">Haritayı taşımak için buraya sürükleyin. Fare tekerleği yakınlaştırır ve uzaklaştırır.</target>
-        <context-group purpose="location"><context context-type="linenumber">35</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">34</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg267" approved="yes">
+      <trans-unit id="_msg343" approved="yes">
         <source xml:space="preserve">Position: %1</source>
         <target xml:space="preserve">Konum: %1</target>
-        <context-group purpose="location"><context context-type="linenumber">77</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">76</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg268" approved="yes">
+      <trans-unit id="_msg344" approved="yes">
         <source xml:space="preserve">Navaid: %1 / %2</source>
         <target xml:space="preserve">Navigasyon: %1 / %2</target>
-        <context-group purpose="location"><context context-type="linenumber">83</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">82</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg269" approved="yes">
+      <trans-unit id="_msg345" approved="yes">
         <source xml:space="preserve">Airspeed:</source>
         <target xml:space="preserve">Hava hızı:</target>
-        <context-group purpose="location"><context context-type="linenumber">99</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">98</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg270" approved="yes">
+      <trans-unit id="_msg346" approved="yes">
         <source xml:space="preserve">Heading:</source>
         <target xml:space="preserve">Başlık:</target>
-        <context-group purpose="location"><context context-type="linenumber">121</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">120</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg271" approved="yes">
+      <trans-unit id="_msg347" approved="yes">
         <source xml:space="preserve">Offset </source>
         <target xml:space="preserve">Offset </target>
-        <context-group purpose="location"><context context-type="linenumber">141</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">140</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg272" approved="yes">
+      <trans-unit id="_msg348" approved="yes">
         <source xml:space="preserve"> on bearing </source>
         <target xml:space="preserve"> yatakta </target>
-        <context-group purpose="location"><context context-type="linenumber">160</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">159</context></context-group>
       </trans-unit>
     </group>
   </body></file>
   <file original="/home/devel/FGFS/flightgear/src/GUI/qml/NewVersionNotification.qml" datatype="plaintext" source-language="en" target-language="tr"><body>
     <group restype="x-trolltech-linguist-context" resname="NewVersionNotification">
-      <trans-unit id="_msg273" approved="yes">
+      <trans-unit id="_msg349" approved="yes">
         <source xml:space="preserve">A new release of FlightGear is available (%1): click for more information</source>
         <target xml:space="preserve">FlightGear&apos;ın yeni bir sürümü mevcut (%1): daha fazla bilgi için tıklayın</target>
         <context-group purpose="location"><context context-type="linenumber">11</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg274" approved="yes">
+      <trans-unit id="_msg350" approved="yes">
         <source xml:space="preserve">Updated version %1 is available: click here to download</source>
         <target xml:space="preserve">Güncellenmiş %1 sürümü mevcut: indirmek için buraya tıklayın</target>
         <context-group purpose="location"><context context-type="linenumber">12</context></context-group>
@@ -1538,22 +1938,22 @@ Yerel yol: %2</target>
   </body></file>
   <file original="/home/devel/FGFS/flightgear/src/GUI/qml/NoDefaultCatalogPanel.qml" datatype="plaintext" source-language="en" target-language="tr"><body>
     <group restype="x-trolltech-linguist-context" resname="NoDefaultCatalogPanel">
-      <trans-unit id="_msg275" approved="yes">
+      <trans-unit id="_msg351" approved="yes">
         <source xml:space="preserve">The official FlightGear aircraft hangar is not added, so many standard aircraft will not be available. You can add the  hangar now, or hide this message. The offical hangar can always be restored from the &apos;Add-Ons&apos; page.</source>
         <target xml:space="preserve">Resmi FlightGear uçak hangarı eklenmedi, bu nedenle birçok standart uçak kullanılamayacak. Şimdi hangarı ekleyebilir veya bu mesajı gizleyebilirsiniz. Resmi hangar her zaman &apos;Eklentiler&apos; sayfasından geri yüklenebilir.</target>
         <context-group purpose="location"><context context-type="linenumber">27</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg276" approved="yes">
+      <trans-unit id="_msg352" approved="yes">
         <source xml:space="preserve">Adding hangar</source>
         <target xml:space="preserve">Hangar ekleme</target>
         <context-group purpose="location"><context context-type="linenumber">37</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg277" approved="yes">
+      <trans-unit id="_msg353" approved="yes">
         <source xml:space="preserve">Add default hangar</source>
         <target xml:space="preserve">Varsayılan hangar ekle</target>
         <context-group purpose="location"><context context-type="linenumber">38</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg278" approved="yes">
+      <trans-unit id="_msg354" approved="yes">
         <source xml:space="preserve">Hide</source>
         <target xml:space="preserve">Gizle</target>
         <context-group purpose="location"><context context-type="linenumber">46</context></context-group>
@@ -1562,12 +1962,12 @@ Yerel yol: %2</target>
   </body></file>
   <file original="/home/devel/FGFS/flightgear/src/GUI/qml/PathListDelegate.qml" datatype="plaintext" source-language="en" target-language="tr"><body>
     <group restype="x-trolltech-linguist-context" resname="PathListDelegate">
-      <trans-unit id="_msg279" approved="yes">
+      <trans-unit id="_msg355" approved="yes">
         <source xml:space="preserve">Remove</source>
         <target xml:space="preserve">Kaldır</target>
         <context-group purpose="location"><context context-type="linenumber">115</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg280" approved="yes">
+      <trans-unit id="_msg356" approved="yes">
         <source xml:space="preserve">Cancel</source>
         <target xml:space="preserve">İptal</target>
         <context-group purpose="location"><context context-type="linenumber">116</context></context-group>
@@ -1576,41 +1976,41 @@ Yerel yol: %2</target>
   </body></file>
   <file original="/home/devel/FGFS/flightgear/src/GUI/qml/PlanRouteDetails.qml" datatype="plaintext" source-language="en" target-language="tr"><body>
     <group restype="x-trolltech-linguist-context" resname="PlanRouteDetails">
-      <trans-unit id="_msg281" approved="yes">
+      <trans-unit id="_msg357" approved="yes">
         <source xml:space="preserve">Previous Leg</source>
         <target xml:space="preserve">Önceki Bacak</target>
-        <context-group purpose="location"><context context-type="linenumber">19</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">18</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg282" approved="yes">
+      <trans-unit id="_msg358" approved="yes">
         <source xml:space="preserve">Next Leg</source>
         <target xml:space="preserve">Sonraki Bacak</target>
-        <context-group purpose="location"><context context-type="linenumber">31</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">30</context></context-group>
       </trans-unit>
     </group>
   </body></file>
   <file original="/home/devel/FGFS/flightgear/src/GUI/qml/RouteLegsView.qml" datatype="plaintext" source-language="en" target-language="tr"><body>
     <group restype="x-trolltech-linguist-context" resname="RouteLegsView">
-      <trans-unit id="_msg283" approved="yes">
+      <trans-unit id="_msg359" approved="yes">
         <source xml:space="preserve">at %1&apos;</source>
         <target xml:space="preserve">%1&apos;de</target>
-        <context-group purpose="location"><context context-type="linenumber">86</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">85</context></context-group>
         <note from="translator">%1&apos;de</note>
       </trans-unit>
-      <trans-unit id="_msg284" approved="yes">
+      <trans-unit id="_msg360" approved="yes">
         <source xml:space="preserve">above %1&apos;</source>
         <target xml:space="preserve">%1&apos;in üstünde</target>
-        <context-group purpose="location"><context context-type="linenumber">89</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">88</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg285" approved="yes">
+      <trans-unit id="_msg361" approved="yes">
         <source xml:space="preserve">below %1&apos;</source>
         <target xml:space="preserve">%1&apos;in altında</target>
-        <context-group purpose="location"><context context-type="linenumber">92</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">91</context></context-group>
       </trans-unit>
     </group>
   </body></file>
   <file original="/home/devel/FGFS/flightgear/src/GUI/qml/SearchButton.qml" datatype="plaintext" source-language="en" target-language="tr"><body>
     <group restype="x-trolltech-linguist-context" resname="SearchButton">
-      <trans-unit id="_msg286" approved="yes">
+      <trans-unit id="_msg362" approved="yes">
         <source xml:space="preserve">Search</source>
         <target xml:space="preserve">Ara</target>
         <context-group purpose="location"><context context-type="linenumber">11</context></context-group>
@@ -1619,7 +2019,7 @@ Yerel yol: %2</target>
   </body></file>
   <file original="/home/devel/FGFS/flightgear/src/GUI/qml/Section.qml" datatype="plaintext" source-language="en" target-language="tr"><body>
     <group restype="x-trolltech-linguist-context" resname="Section">
-      <trans-unit id="_msg287" approved="yes">
+      <trans-unit id="_msg363" approved="yes">
         <source xml:space="preserve">Click here to show advanced settings in this section</source>
         <target xml:space="preserve">Bu bölümde gelişmiş ayarları göstermek için burayı tıklayın</target>
         <context-group purpose="location"><context context-type="linenumber">102</context></context-group>
@@ -1628,432 +2028,115 @@ Yerel yol: %2</target>
   </body></file>
   <file original="/home/devel/FGFS/flightgear/src/GUI/qml/SettingPathChooser.qml" datatype="plaintext" source-language="en" target-language="tr"><body>
     <group restype="x-trolltech-linguist-context" resname="SettingPathChooser">
-      <trans-unit id="_msg288" approved="yes">
+      <trans-unit id="_msg364" approved="yes">
         <source xml:space="preserve">%1 (default)</source>
         <target xml:space="preserve">%1 (varsayılan)</target>
-        <context-group purpose="location"><context context-type="linenumber">45</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">44</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg289" approved="yes">
+      <trans-unit id="_msg365" approved="yes">
         <source xml:space="preserve">Change</source>
         <target xml:space="preserve">Değiştir</target>
-        <context-group purpose="location"><context context-type="linenumber">60</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">59</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg290" approved="yes">
+      <trans-unit id="_msg366" approved="yes">
         <source xml:space="preserve">Use default</source>
         <target xml:space="preserve">Varsayılanı Kullan</target>
-        <context-group purpose="location"><context context-type="linenumber">74</context></context-group>
-      </trans-unit>
-    </group>
-  </body></file>
-  <file original="/home/devel/FGFS/flightgear/src/GUI/qml/Settings.qml" datatype="plaintext" source-language="en" target-language="tr"><body>
-    <group restype="x-trolltech-linguist-context" resname="Settings">
-      <trans-unit id="_msg291" approved="yes">
-        <source xml:space="preserve">Settings</source>
-        <target xml:space="preserve">Ayarlar</target>
-        <context-group purpose="location"><context context-type="linenumber">53</context></context-group>
-      </trans-unit>
-      <trans-unit id="_msg292" approved="yes">
-        <source xml:space="preserve">Enter text here to search for a setting</source>
-        <target xml:space="preserve">Bir ayar aramak için buraya metin girin</target>
-        <context-group purpose="location"><context context-type="linenumber">79</context></context-group>
-      </trans-unit>
-      <trans-unit id="_msg293" approved="yes">
-        <source xml:space="preserve">General</source>
-        <target xml:space="preserve">Genel</target>
-        <context-group purpose="location"><context context-type="linenumber">92</context></context-group>
-      </trans-unit>
-      <trans-unit id="_msg294" approved="yes">
-        <source xml:space="preserve">paused</source>
-        <target xml:space="preserve">duraklatıldı</target>
-        <context-group purpose="location"><context context-type="linenumber">98</context></context-group>
-      </trans-unit>
-      <trans-unit id="_msg295" approved="yes">
-        <source xml:space="preserve">console</source>
-        <target xml:space="preserve">konsol</target>
-        <context-group purpose="location"><context context-type="linenumber">99</context></context-group>
-      </trans-unit>
-      <trans-unit id="_msg296" approved="yes">
-        <source xml:space="preserve">Start paused</source>
-        <target xml:space="preserve">Başlat durklat</target>
-        <context-group purpose="location"><context context-type="linenumber">106</context></context-group>
-      </trans-unit>
-      <trans-unit id="_msg297" approved="yes">
-        <source xml:space="preserve">Automatically pause the simulator when launching. This is useful when starting in the air.</source>
-        <target xml:space="preserve">Başlatırken simülatörü otomatik olarak duraklatın. Bu, havada başlatırken kullanışlıdır.</target>
-        <context-group purpose="location"><context context-type="linenumber">107</context></context-group>
-      </trans-unit>
-      <trans-unit id="_msg298" approved="yes">
-        <source xml:space="preserve">Enable auto-coordination</source>
-        <target xml:space="preserve">Otomatik koordinasyonu etkinleştir</target>
-        <context-group purpose="location"><context context-type="linenumber">116</context></context-group>
-      </trans-unit>
-      <trans-unit id="_msg299" approved="yes">
-        <source xml:space="preserve">When flying with the mouse, or a joystick lacking a rudder axis, it&apos;s difficult to manually coordinate aileron and rudder movements during turn. This option automatically commands the rudder to maintain zero slip angle when banking</source>
-        <target xml:space="preserve">Fareyle veya dümen ekseni olmayan bir joystick ile uçarken, dönüş sırasında kanatçık ve dümen hareketlerini elle koordine etmek zordur. Bu seçenek, dümene yatarken sıfır kayma açısını korumak için dümene otomatik olarak komut verir</target>
-        <context-group purpose="location"><context context-type="linenumber">117</context></context-group>
-      </trans-unit>
-      <trans-unit id="_msg300" approved="yes">
-        <source xml:space="preserve">Show debugging console</source>
-        <target xml:space="preserve">Hata ayıklama konsolunu göster</target>
-        <context-group purpose="location"><context context-type="linenumber">129</context></context-group>
-      </trans-unit>
-      <trans-unit id="_msg301" approved="yes">
-        <source xml:space="preserve">Open a console window showing debug output from the application.</source>
-        <target xml:space="preserve">Uygulamadan hata ayıklama çıktısını gösteren bir konsol penceresi açın.</target>
-        <context-group purpose="location"><context context-type="linenumber">130</context></context-group>
-      </trans-unit>
-      <trans-unit id="_msg302" approved="yes">
-        <source xml:space="preserve">Enable crash &amp; error reporting</source>
-        <target xml:space="preserve">Kilitlenme ve hata raporlamayı etkinleştir</target>
-        <context-group purpose="location"><context context-type="linenumber">139</context></context-group>
-      </trans-unit>
-      <trans-unit id="_msg303" approved="yes">
-        <source xml:space="preserve">Send crash and error reports to the development team for analysis.</source>
-        <target xml:space="preserve">Analiz için geliştirme ekibine kilitlenme ve hata raporları gönderin.</target>
-        <context-group purpose="location"><context context-type="linenumber">140</context></context-group>
-      </trans-unit>
-      <trans-unit id="_msg304" approved="yes">
-        <source xml:space="preserve">Enable developer mode</source>
-        <target xml:space="preserve">Geliştirici modunu etkinleştir</target>
-        <context-group purpose="location"><context context-type="linenumber">149</context></context-group>
-      </trans-unit>
-      <trans-unit id="_msg305" approved="yes">
-        <source xml:space="preserve">Enable simulator &amp; aircraft development features, such as increased error messages in log files.</source>
-        <target xml:space="preserve">Günlük dosyalarında artan hata mesajları gibi simülatör ve uçak geliştirme özelliklerini etkinleştirin.</target>
-        <context-group purpose="location"><context context-type="linenumber">150</context></context-group>
-      </trans-unit>
-      <trans-unit id="_msg306" approved="yes">
-        <source xml:space="preserve">Re-open FlightGear on exit</source>
-        <target xml:space="preserve">Çıkışta FlightGear&apos;ı yeniden açın</target>
-        <context-group purpose="location"><context context-type="linenumber">158</context></context-group>
-      </trans-unit>
-      <trans-unit id="_msg307" approved="yes">
-        <source xml:space="preserve">Re-open this window when exiting FlightGear, to start another flight immediately.</source>
-        <target xml:space="preserve">Hemen başka bir uçuş başlatmak için FlightGear&apos;dan çıkarken bu pencereyi yeniden açın.</target>
-        <context-group purpose="location"><context context-type="linenumber">159</context></context-group>
-      </trans-unit>
-      <trans-unit id="_msg308" approved="yes">
-        <source xml:space="preserve">Multi-player</source>
-        <target xml:space="preserve">Çok oyunculu</target>
-        <context-group purpose="location"><context context-type="linenumber">175</context></context-group>
-      </trans-unit>
-      <trans-unit id="_msg309" approved="yes">
-        <source xml:space="preserve">multi-player</source>
-        <target xml:space="preserve">çok oyunculu</target>
-        <context-group purpose="location"><context context-type="linenumber">183</context></context-group>
-      </trans-unit>
-      <trans-unit id="_msg310" approved="yes">
-        <source xml:space="preserve">Connect to the multi-player network</source>
-        <target xml:space="preserve">Çok oyunculu ağa bağlanın</target>
-        <context-group purpose="location"><context context-type="linenumber">190</context></context-group>
-      </trans-unit>
-      <trans-unit id="_msg311" approved="yes">
-        <source xml:space="preserve">FlightGear supporters maintain a network of servers to enable global multi-user flight. This requires a moderately fast Internet connection to be usable. Your aircraft will be visible to other users online, and you will see their aircraft.</source>
-        <target xml:space="preserve">FlightGear destekçileri, küresel çok kullanıcılı uçuş sağlamak için bir sunucu ağı sağlar. Bu, kullanılabilir olması için orta derecede hızlı bir İnternet bağlantısı gerektirir. Uçağınız çevrimiçi olarak diğer kullanıcılar tarafından görülebilecek ve siz de onların uçaklarını göreceksiniz.</target>
-        <context-group purpose="location"><context context-type="linenumber">191</context></context-group>
-      </trans-unit>
-      <trans-unit id="_msg312" approved="yes">
-        <source xml:space="preserve">Callsign</source>
-        <target xml:space="preserve">Çağrı işareti</target>
-        <context-group purpose="location"><context context-type="linenumber">207</context></context-group>
-      </trans-unit>
-      <trans-unit id="_msg313" approved="yes">
-        <source xml:space="preserve">Enter a callsign you will use online. This is visible to all users and is how ATC services and other pilots will refer to you. (Maximum of seven characters permitted)</source>
-        <target xml:space="preserve">Çevrimiçi kullanacağınız bir çağrı işareti girin. Bu, tüm kullanıcılar tarafından görülebilir ve ATC hizmetleri ile diğer pilotların size nasıl başvuracağıdır. (En fazla yedi karaktere izin verilir)</target>
-        <context-group purpose="location"><context context-type="linenumber">208</context></context-group>
-      </trans-unit>
-      <trans-unit id="_msg314" approved="yes">
-        <source xml:space="preserve">Server</source>
-        <target xml:space="preserve">Sunucu</target>
-        <context-group purpose="location"><context context-type="linenumber">223</context></context-group>
-      </trans-unit>
-      <trans-unit id="_msg315" approved="yes">
-        <source xml:space="preserve">Select a server close to you for better responsiveness and reduced lag when flying online.</source>
-        <target xml:space="preserve">Çevrimiçi uçarken daha iyi yanıt vermek ve gecikmeyi azaltmak için size yakın bir sunucu seçin.</target>
-        <context-group purpose="location"><context context-type="linenumber">225</context></context-group>
-      </trans-unit>
-      <trans-unit id="_msg316" approved="yes">
-        <source xml:space="preserve">Custom server</source>
-        <target xml:space="preserve">Özel sunucu</target>
-        <context-group purpose="location"><context context-type="linenumber">264</context></context-group>
-      </trans-unit>
-      <trans-unit id="_msg317" approved="yes">
-        <source xml:space="preserve">Enter a server hostname or IP address, and optionally a port number. (Default port is 5000) For example &apos;localhost:5001&apos;</source>
-        <target xml:space="preserve">Bir sunucu ana bilgisayar adı veya IP adresi ve isteğe bağlı olarak bir bağlantı noktası numarası girin. (Varsayılan bağlantı noktası 5000&apos;dir) Örneğin &apos;localhost:5001&apos;</target>
-        <context-group purpose="location"><context context-type="linenumber">266</context></context-group>
-      </trans-unit>
-      <trans-unit id="_msg318" approved="yes">
-        <source xml:space="preserve">Downloads</source>
-        <target xml:space="preserve">İndirilenler</target>
-        <context-group purpose="location"><context context-type="linenumber">314</context></context-group>
-      </trans-unit>
-      <trans-unit id="_msg319" approved="yes">
-        <source xml:space="preserve">scenery downloads</source>
-        <target xml:space="preserve">manzara indirmeleri</target>
-        <context-group purpose="location"><context context-type="linenumber">321</context></context-group>
-      </trans-unit>
-      <trans-unit id="_msg320" approved="yes">
-        <source xml:space="preserve">Download scenery automatically</source>
-        <target xml:space="preserve">Manzarayı otomatik olarak indir</target>
-        <context-group purpose="location"><context context-type="linenumber">328</context></context-group>
-      </trans-unit>
-      <trans-unit id="_msg321" approved="yes">
-        <source xml:space="preserve">FlightGear can automatically download scenery as needed, and check for updates to the scenery. If you disable this option, you will need to download &amp; install scenery using an alternative method.</source>
-        <target xml:space="preserve">FlightGear, manzarayı gerektiği gibi otomatik olarak indirebilir ve manzaradaki güncellemeleri kontrol edebilir. Bu seçeneği devre dışı bırakırsanız, alternatif bir yöntem kullanarak manzarayı indirmeniz ve yüklemeniz gerekecektir.</target>
-        <context-group purpose="location"><context context-type="linenumber">329</context></context-group>
-      </trans-unit>
-      <trans-unit id="_msg322" approved="yes">
-        <source xml:space="preserve">Download location</source>
-        <target xml:space="preserve">İndirme konumu</target>
-        <context-group purpose="location"><context context-type="linenumber">344</context></context-group>
-      </trans-unit>
-      <trans-unit id="_msg323" approved="yes">
-        <source xml:space="preserve">FlightGear stores downloaded files (scenery and aircraft) in this location. Depending on your settings, it may grow to a considerable size (many gigabytes). If you change the download location, files will need to be downloaded again. When changing this setting, FlightGear will restart to use the new location correctly.</source>
-        <target xml:space="preserve">FlightGear, indirilen dosyaları (manzara ve uçak) bu konumda saklar. Ayarlarınıza bağlı olarak, önemli bir boyuta (birçok gigabayt) kadar büyüyebilir. İndirme konumunu değiştirirseniz, dosyaların yeniden indirilmesi gerekir. Bu ayarı değiştirirken FlightGear yeni konumu doğru şekilde kullanmak için yeniden başlar.</target>
-        <context-group purpose="location"><context context-type="linenumber">345</context></context-group>
-      </trans-unit>
-      <trans-unit id="_msg324" approved="yes">
-        <source xml:space="preserve">Choose a location to store download files.</source>
-        <target xml:space="preserve">İndirilen dosyaları depolamak için bir konum seçin.</target>
-        <context-group purpose="location"><context context-type="linenumber">352</context></context-group>
-      </trans-unit>
-      <trans-unit id="_msg325" approved="yes">
-        <source xml:space="preserve">View &amp; Window</source>
-        <target xml:space="preserve">Görünüm ve Pencere</target>
-        <context-group purpose="location"><context context-type="linenumber">387</context></context-group>
-      </trans-unit>
-      <trans-unit id="_msg326" approved="yes">
-        <source xml:space="preserve">full-screen</source>
-        <target xml:space="preserve">tam ekran</target>
-        <context-group purpose="location"><context context-type="linenumber">394</context></context-group>
-      </trans-unit>
-      <trans-unit id="_msg327" approved="yes">
-        <source xml:space="preserve">Start full-screen</source>
-        <target xml:space="preserve">Tam ekranı başlat</target>
-        <context-group purpose="location"><context context-type="linenumber">401</context></context-group>
-      </trans-unit>
-      <trans-unit id="_msg328" approved="yes">
-        <source xml:space="preserve">Start the simulator in full-screen mode.</source>
-        <target xml:space="preserve">Simülatörü tam ekran modunda başlatın.</target>
-        <context-group purpose="location"><context context-type="linenumber">402</context></context-group>
-      </trans-unit>
-      <trans-unit id="_msg329" approved="yes">
-        <source xml:space="preserve">Window size</source>
-        <target xml:space="preserve">Pencere boyutu</target>
-        <context-group purpose="location"><context context-type="linenumber">410</context></context-group>
-      </trans-unit>
-      <trans-unit id="_msg330" approved="yes">
-        <source xml:space="preserve">Select the initial size of the window (this has no effect in full-screen mode).</source>
-        <target xml:space="preserve">Pencerenin başlangıç boyutunu seçin (bunun tam ekran modunda hiçbir etkisi yoktur).</target>
-        <context-group purpose="location"><context context-type="linenumber">411</context></context-group>
-      </trans-unit>
-      <trans-unit id="_msg331" approved="yes">
-        <source xml:space="preserve">Custom Size</source>
-        <target xml:space="preserve">Özel Boyut</target>
-        <context-group purpose="location"><context context-type="linenumber">413</context></context-group>
-      </trans-unit>
-      <trans-unit id="_msg332" approved="yes">
-        <source xml:space="preserve">Custom size</source>
-        <target xml:space="preserve">Özel boyut</target>
-        <context-group purpose="location"><context context-type="linenumber">424</context></context-group>
-      </trans-unit>
-      <trans-unit id="_msg333" approved="yes">
-        <source xml:space="preserve">Enter a custom window size in the form &apos;WWWWW x HHHHH&apos;, for example &apos;1280 x 900&apos;</source>
-        <target xml:space="preserve">&quot;WWWW x HHHHH&quot; biçiminde özel bir pencere boyutu girin, örneğin &quot;1280 x 900&quot;</target>
-        <context-group purpose="location"><context context-type="linenumber">426</context></context-group>
-      </trans-unit>
-      <trans-unit id="_msg334" approved="yes">
-        <source xml:space="preserve">Rendering</source>
-        <target xml:space="preserve">İşleme</target>
-        <context-group purpose="location"><context context-type="linenumber">446</context></context-group>
-      </trans-unit>
-      <trans-unit id="_msg335" approved="yes">
-        <source xml:space="preserve">Rembrandt</source>
-        <target xml:space="preserve">Rembrandt</target>
-        <context-group purpose="location"><context context-type="linenumber">457</context></context-group>
-        <context-group purpose="location"><context context-type="linenumber">465</context></context-group>
-      </trans-unit>
-      <trans-unit id="_msg336" approved="yes">
-        <source xml:space="preserve">ALS</source>
-        <target xml:space="preserve">ALS</target>
-        <context-group purpose="location"><context context-type="linenumber">458</context></context-group>
-      </trans-unit>
-      <trans-unit id="_msg337" approved="yes">
-        <source xml:space="preserve">anti-aliasing</source>
-        <target xml:space="preserve">kenar yumuşatma</target>
-        <context-group purpose="location"><context context-type="linenumber">459</context></context-group>
-      </trans-unit>
-      <trans-unit id="_msg338" approved="yes">
-        <source xml:space="preserve">Default</source>
-        <target xml:space="preserve">Öntanımlı</target>
-        <context-group purpose="location"><context context-type="linenumber">463</context></context-group>
-        <context-group purpose="location"><context context-type="linenumber">467</context></context-group>
-      </trans-unit>
-      <trans-unit id="_msg339" approved="yes">
-        <source xml:space="preserve">Atmospheric Light Scattering</source>
-        <target xml:space="preserve">Atmosferik Işık Saçılımı</target>
-        <context-group purpose="location"><context context-type="linenumber">464</context></context-group>
-        <context-group purpose="location"><context context-type="linenumber">468</context></context-group>
-      </trans-unit>
-      <trans-unit id="_msg340" approved="yes">
-        <source xml:space="preserve">Low-spec</source>
-        <target xml:space="preserve">Düşük özellikli</target>
-        <context-group purpose="location"><context context-type="linenumber">469</context></context-group>
-      </trans-unit>
-      <trans-unit id="_msg341" approved="yes">
-        <source xml:space="preserve">The default renderer provides standard visuals with maximum compatibility.</source>
-        <target xml:space="preserve">Varsayılan oluşturucu, azami uyumlulukla standart görseller sağlar.</target>
-        <context-group purpose="location"><context context-type="linenumber">471</context></context-group>
-      </trans-unit>
-      <trans-unit id="_msg342" approved="yes">
-        <source xml:space="preserve">The ALS renderer uses a sophisticated physical atmospheric model and several other effects to give realistic rendering of large distances.</source>
-        <target xml:space="preserve">ALS oluşturucu, büyük mesafelerin gerçekçi görüntülenmesini sağlamak için gelişmiş bir fiziksel atmosferik model ve birkaç başka efekt kullanır.</target>
-        <context-group purpose="location"><context context-type="linenumber">472</context></context-group>
-      </trans-unit>
-      <trans-unit id="_msg343" approved="yes">
-        <source xml:space="preserve">Rembrandt is a configurable multi-pass renderer which supports shadow-maps, cinematic effects and more. However, not all aircraft appear correctly and performance will depend greatly on your system hardware.</source>
-        <target xml:space="preserve">Rembrandt, gölge haritalarını, sinematik efektleri ve daha fazlasını destekleyen, yapılandırılabilir bir çok geçişli oluşturucudur. Ancak, tüm uçaklar doğru görünmüyor ve performans büyük ölçüde sistem donanımınıza bağlı olacaktır.</target>
-        <context-group purpose="location"><context context-type="linenumber">474</context></context-group>
-      </trans-unit>
-      <trans-unit id="_msg344" approved="yes">
-        <source xml:space="preserve">The low-spec renderer ensures maximum performance on older computers.</source>
-        <target xml:space="preserve">Düşük özellikli oluşturucu, eski bilgisayarlarda maksimum performans sağlar.</target>
-        <context-group purpose="location"><context context-type="linenumber">477</context></context-group>
-      </trans-unit>
-      <trans-unit id="_msg345" approved="yes">
-        <source xml:space="preserve">Renderer</source>
-        <target xml:space="preserve">Oluşturucu</target>
-        <context-group purpose="location"><context context-type="linenumber">486</context></context-group>
-      </trans-unit>
-      <trans-unit id="_msg346" approved="yes">
-        <source xml:space="preserve">Anti-aliasing</source>
-        <target xml:space="preserve">Kenar yumuşatma</target>
-        <context-group purpose="location"><context context-type="linenumber">498</context></context-group>
-      </trans-unit>
-      <trans-unit id="_msg347" approved="yes">
-        <source xml:space="preserve">Anti-aliasing is disabled when Rembrandt is enabled.</source>
-        <target xml:space="preserve">Rembrandt etkinleştirildiğinde kenar yumuşatma devre dışı bırakılır.</target>
-        <context-group purpose="location"><context context-type="linenumber">500</context></context-group>
-      </trans-unit>
-      <trans-unit id="_msg348" approved="yes">
-        <source xml:space="preserve">Anti-aliasing improves the appearance of high-contrast edges and lines. This is especially noticeable on sloping or diagonal edges. Higher settings can reduce performance.</source>
-        <target xml:space="preserve">Kenar yumuşatma, yüksek kontrastlı kenarların ve çizgilerin görünümünü iyileştirir. Bu özellikle eğimli veya çapraz kenarlarda fark edilir. Daha yüksek ayarlar performansı düşürebilir.</target>
-        <context-group purpose="location"><context context-type="linenumber">501</context></context-group>
-      </trans-unit>
-      <trans-unit id="_msg349" approved="yes">
-        <source xml:space="preserve">Off</source>
-        <target xml:space="preserve">Kapalı</target>
-        <context-group purpose="location"><context context-type="linenumber">506</context></context-group>
-      </trans-unit>
-      <trans-unit id="_msg350" approved="yes">
-        <source xml:space="preserve">Cache graphics for faster loading</source>
-        <target xml:space="preserve">Daha hızlı yükleme için grafikleri önbelleğe alın</target>
-        <context-group purpose="location"><context context-type="linenumber">519</context></context-group>
-      </trans-unit>
-      <trans-unit id="_msg351" approved="yes">
-        <source xml:space="preserve">By converting images used in rendering to an optimised format loading times and memory use can be improved. This will consume some disk space and take initial time while images are converted, but subsequent loads will be faster, and use less memory.</source>
-        <target xml:space="preserve">Oluşturmada kullanılan görüntüleri optimize edilmiş bir formata dönüştürerek yükleme süreleri ve bellek kullanımı iyileştirilebilir. Bu, bir miktar disk alanı tüketecek ve görüntüler dönüştürülürken ilk zaman alacak, ancak sonraki yükler daha hızlı olacak ve daha az bellek kullanacak.</target>
-        <context-group purpose="location"><context context-type="linenumber">520</context></context-group>
-      </trans-unit>
-      <trans-unit id="_msg352" approved="yes">
-        <source xml:space="preserve">Additional Settings</source>
-        <target xml:space="preserve">Ek ayarlar</target>
-        <context-group purpose="location"><context context-type="linenumber">553</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">73</context></context-group>
       </trans-unit>
     </group>
   </body></file>
   <file original="/home/devel/FGFS/flightgear/src/GUI/qml/Sidebar.qml" datatype="plaintext" source-language="en" target-language="tr"><body>
     <group restype="x-trolltech-linguist-context" resname="Sidebar">
-      <trans-unit id="_msg353" approved="yes">
+      <trans-unit id="_msg367" approved="yes">
         <source xml:space="preserve">Access additional options here</source>
         <target xml:space="preserve">Ek seçeneklere buradan erişin</target>
-        <context-group purpose="location"><context context-type="linenumber">67</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">66</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg354" approved="yes">
+      <trans-unit id="_msg368" approved="yes">
         <source xml:space="preserve">The selected aircraft is not installed or has updates pending</source>
         <target xml:space="preserve">Seçilen uçak kurulu değil veya bekleyen güncellemeler var</target>
-        <context-group purpose="location"><context context-type="linenumber">94</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">93</context></context-group>
       </trans-unit>
     </group>
   </body></file>
   <file original="/home/devel/FGFS/flightgear/src/GUI/qml/Summary.qml" datatype="plaintext" source-language="en" target-language="tr"><body>
     <group restype="x-trolltech-linguist-context" resname="Summary">
-      <trans-unit id="_msg355" approved="yes">
+      <trans-unit id="_msg369" approved="yes">
         <source xml:space="preserve">Licenced under the GNU Public License (GPL) - click for more info</source>
         <target xml:space="preserve">GNU Kamu Lisansı (GPL) kapsamında lisanslanmıştır - daha fazla bilgi için tıklayın</target>
-        <context-group purpose="location"><context context-type="linenumber">96</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">89</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg356" approved="yes">
+      <trans-unit id="_msg370" approved="yes">
         <source xml:space="preserve">Aircraft:</source>
         <target xml:space="preserve">Uçak:</target>
-        <context-group purpose="location"><context context-type="linenumber">152</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">145</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg357" approved="yes">
+      <trans-unit id="_msg371" approved="yes">
         <source xml:space="preserve">No aircraft selected</source>
         <target xml:space="preserve">Hiçbir uçak seçilmedi</target>
-        <context-group purpose="location"><context context-type="linenumber">160</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">153</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg358" approved="yes">
+      <trans-unit id="_msg372" approved="yes">
         <source xml:space="preserve">Access recently used aircraft.</source>
         <target xml:space="preserve">Son kullanılan uçaklara erişin.</target>
-        <context-group purpose="location"><context context-type="linenumber">186</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">179</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg359" approved="yes">
+      <trans-unit id="_msg373" approved="yes">
         <source xml:space="preserve">State:</source>
         <target xml:space="preserve">Durum:</target>
-        <context-group purpose="location"><context context-type="linenumber">253</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">246</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg360" approved="yes">
+      <trans-unit id="_msg374" approved="yes">
         <source xml:space="preserve">Default state</source>
         <target xml:space="preserve">Varsayılan durum</target>
-        <context-group purpose="location"><context context-type="linenumber">255</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">248</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg361" approved="yes">
+      <trans-unit id="_msg375" approved="yes">
         <source xml:space="preserve">Choose the starting condition of the aircraft</source>
         <target xml:space="preserve">Uçağın başlangıç durumunu seçin</target>
-        <context-group purpose="location"><context context-type="linenumber">284</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">277</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg362" approved="yes">
+      <trans-unit id="_msg376" approved="yes">
         <source xml:space="preserve">Location:</source>
         <target xml:space="preserve">Konum:</target>
-        <context-group purpose="location"><context context-type="linenumber">316</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">309</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg363" approved="yes">
+      <trans-unit id="_msg377" approved="yes">
         <source xml:space="preserve">&lt;i&gt;set from user arguments (in Settings)&lt;/i&gt;</source>
         <target xml:space="preserve">&lt;i&gt;kullanıcı bağımsız değişkenlerinden ayarlayın (Ayarlar&apos;da)&lt;/i&gt;</target>
-        <context-group purpose="location"><context context-type="linenumber">159</context></context-group>
-        <context-group purpose="location"><context context-type="linenumber">323</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">152</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">316</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg364" approved="yes">
+      <trans-unit id="_msg378" approved="yes">
         <source xml:space="preserve">Click to view and change the current location.</source>
         <target xml:space="preserve">Mevcut konumu görüntülemek ve değiştirmek için tıklayın.</target>
-        <context-group purpose="location"><context context-type="linenumber">337</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">330</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg365" approved="yes">
+      <trans-unit id="_msg379" approved="yes">
         <source xml:space="preserve">Access recently used locations</source>
         <target xml:space="preserve">Son kullanılan konumlara erişin</target>
-        <context-group purpose="location"><context context-type="linenumber">356</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">349</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg366" approved="yes">
+      <trans-unit id="_msg380" approved="yes">
         <source xml:space="preserve">Flight Plan:</source>
         <target xml:space="preserve">Uçuş planı:</target>
-        <context-group purpose="location"><context context-type="linenumber">363</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">356</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg367" approved="yes">
+      <trans-unit id="_msg381" approved="yes">
         <source xml:space="preserve">Settings:</source>
         <target xml:space="preserve">Ayarlar:</target>
-        <context-group purpose="location"><context context-type="linenumber">384</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">377</context></context-group>
       </trans-unit>
     </group>
   </body></file>
   <file original="/home/devel/FGFS/flightgear/src/GUI/qml/UpdateAllPanel.qml" datatype="plaintext" source-language="en" target-language="tr"><body>
     <group restype="x-trolltech-linguist-context" resname="UpdateAllPanel">
-      <trans-unit id="_msg368" approved="yes">
+      <trans-unit id="_msg382" approved="yes">
         <source xml:space="preserve">%1 aircraft have updates available - download and install them now?</source>
         <target xml:space="preserve">%1 uçağın kullanılabilir güncellemeleri var - şimdi indirilip yüklensin mi?</target>
         <context-group purpose="location"><context context-type="linenumber">18</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg369" approved="yes">
+      <trans-unit id="_msg383" approved="yes">
         <source xml:space="preserve">Update all</source>
         <target xml:space="preserve">Tümünü güncelle</target>
         <context-group purpose="location"><context context-type="linenumber">25</context></context-group>
@@ -2062,144 +2145,100 @@ Yerel yol: %2</target>
   </body></file>
   <file original="/home/devel/FGFS/flightgear/src/GUI/qml/ViewCommandLine.qml" datatype="plaintext" source-language="en" target-language="tr"><body>
     <group restype="x-trolltech-linguist-context" resname="ViewCommandLine">
-      <trans-unit id="_msg370" approved="yes">
+      <trans-unit id="_msg384" approved="yes">
         <source xml:space="preserve">Copy to clipboard</source>
         <target xml:space="preserve">Panoya kopyala</target>
-        <context-group purpose="location"><context context-type="linenumber">20</context></context-group>
-      </trans-unit>
-    </group>
-  </body></file>
-  <file original="/home/devel/FGFS/flightgear/src/GUI/AddOnsController.cxx" datatype="cpp" source-language="en" target-language="tr"><body>
-    <group restype="x-trolltech-linguist-context" resname="AddOnsController">
-      <trans-unit id="_msg371" approved="yes">
-        <source xml:space="preserve">Choose aircraft folder</source>
-        <target xml:space="preserve">Uçak klasörünü seçin</target>
-        <context-group purpose="location"><context context-type="linenumber">137</context></context-group>
-      </trans-unit>
-      <trans-unit id="_msg372" approved="yes">
-        <source xml:space="preserve">No aircraft found in the folder &apos;%1&apos; - add anyway?</source>
-        <target xml:space="preserve">&apos;%1&apos; klasöründe uçak bulunamadı - yine de eklensin mi?</target>
-        <context-group purpose="location"><context context-type="linenumber">161</context></context-group>
-      </trans-unit>
-      <trans-unit id="_msg373" approved="yes">
-        <source xml:space="preserve">Choose addon module folder</source>
-        <target xml:space="preserve">Eklenti modülü klasörünü seçin</target>
-        <context-group purpose="location"><context context-type="linenumber">180</context></context-group>
-      </trans-unit>
-      <trans-unit id="_msg374" approved="yes">
-        <source xml:space="preserve">The folder &apos;%1&apos; doesn&apos;t appear to contain an addon module - add anyway?</source>
-        <target xml:space="preserve">&apos;%1&apos; klasörü bir eklenti modülü içermiyor - yine de eklensin mi?</target>
-        <context-group purpose="location"><context context-type="linenumber">199</context></context-group>
-      </trans-unit>
-      <trans-unit id="_msg375" approved="yes">
-        <source xml:space="preserve">Added modules should contain at least both of the following files: addon-metadata.xml, addon-main.nas.</source>
-        <target xml:space="preserve">Eklenen modüller en az şu dosyalardan her ikisini de içermelidir: addon-metadata.xml, addon-main.nas.</target>
-        <context-group purpose="location"><context context-type="linenumber">202</context></context-group>
-      </trans-unit>
-      <trans-unit id="_msg376" approved="yes">
-        <source xml:space="preserve">Choose scenery folder</source>
-        <target xml:space="preserve">Manzara klasörünü seçin</target>
-        <context-group purpose="location"><context context-type="linenumber">230</context></context-group>
-      </trans-unit>
-      <trans-unit id="_msg377" approved="yes">
-        <source xml:space="preserve">The folder &apos;%1&apos; doesn&apos;t appear to contain scenery - add anyway?</source>
-        <target xml:space="preserve">&apos;%1&apos; klasörü manzara içermiyor - yine de eklensin mi?</target>
-        <context-group purpose="location"><context context-type="linenumber">249</context></context-group>
-      </trans-unit>
-      <trans-unit id="_msg378" approved="yes">
-        <source xml:space="preserve">Added scenery should contain at least one of the following folders: Objects, Terrain, Buildings, Roads, Pylons, NavData, Airports.</source>
-        <target xml:space="preserve">Eklenen manzara şu klasörlerden en az birini içermelidir: Objects, Terrain, Buildings, Roads, Pylons, NavData, Airports.</target>
-        <context-group purpose="location"><context context-type="linenumber">252</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">21</context></context-group>
       </trans-unit>
     </group>
   </body></file>
   <file original="/home/devel/FGFS/flightgear/src/GUI/AddonsModel.cxx" datatype="cpp" source-language="en" target-language="tr"><body>
     <group restype="x-trolltech-linguist-context" resname="AddonsModel">
-      <trans-unit id="_msg379" approved="yes">
+      <trans-unit id="_msg385" approved="yes">
         <source xml:space="preserve">%1 - %2</source>
         <target xml:space="preserve">%1 - %2</target>
-        <context-group purpose="location"><context context-type="linenumber">102</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">105</context></context-group>
       </trans-unit>
     </group>
   </body></file>
-  <file original="/home/devel/FGFS/flightgear/src/GUI/AircraftModel.cxx" datatype="cpp" source-language="en" target-language="tr"><body>
+  <file original="/home/devel/FGFS/flightgear/src/GUI/AircraftItemModel.cxx" datatype="cpp" source-language="en" target-language="tr"><body>
     <group restype="x-trolltech-linguist-context" resname="AircraftItemModel">
-      <trans-unit id="_msg380" approved="yes">
+      <trans-unit id="_msg386" approved="yes">
         <source xml:space="preserve">Missing description for: %1</source>
         <target xml:space="preserve">Şunun açıklaması eksik: %1</target>
-        <context-group purpose="location"><context context-type="linenumber">303</context></context-group>
-        <context-group purpose="location"><context context-type="linenumber">352</context></context-group>
-        <context-group purpose="location"><context context-type="linenumber">360</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">304</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">353</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">361</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg381" approved="yes">
+      <trans-unit id="_msg387" approved="yes">
         <source xml:space="preserve">Invalid package checksum</source>
         <target xml:space="preserve">Geçersiz paket sağlama toplamı</target>
-        <context-group purpose="location"><context context-type="linenumber">651</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">652</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg382" approved="yes">
+      <trans-unit id="_msg388" approved="yes">
         <source xml:space="preserve">Download failed</source>
         <target xml:space="preserve">Yükleme başarısız</target>
-        <context-group purpose="location"><context context-type="linenumber">653</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">654</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg383" approved="yes">
+      <trans-unit id="_msg389" approved="yes">
         <source xml:space="preserve">Package could not be extracted</source>
         <target xml:space="preserve">Paket çıkarılamadı</target>
-        <context-group purpose="location"><context context-type="linenumber">655</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">656</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg384" approved="yes">
+      <trans-unit id="_msg390" approved="yes">
         <source xml:space="preserve">A local file-system error occurred</source>
         <target xml:space="preserve">Yerel bir dosya sistemi hatası oluştu</target>
-        <context-group purpose="location"><context context-type="linenumber">657</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">658</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg385" approved="yes">
+      <trans-unit id="_msg391" approved="yes">
         <source xml:space="preserve">Package file missing from download server</source>
         <target xml:space="preserve">İndirme sunucusunda paket dosyası eksik</target>
-        <context-group purpose="location"><context context-type="linenumber">659</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">660</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg386" approved="yes">
+      <trans-unit id="_msg392" approved="yes">
         <source xml:space="preserve">Unknown reason</source>
         <target xml:space="preserve">Bilinmeyen sebep</target>
-        <context-group purpose="location"><context context-type="linenumber">662</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">663</context></context-group>
       </trans-unit>
     </group>
   </body></file>
-  <file original="/home/devel/FGFS/flightgear/src/GUI/AircraftSearchFilterModel.cxx" datatype="cpp" source-language="en" target-language="tr"><body>
+  <file original="/home/devel/FGFS/flightgear/src/GUI/AircraftProxyModel.cxx" datatype="cpp" source-language="en" target-language="tr"><body>
     <group restype="x-trolltech-linguist-context" resname="AircraftProxyModel">
-      <trans-unit id="_msg387" approved="yes">
+      <trans-unit id="_msg393" approved="yes">
         <source xml:space="preserve">(%1 of %2 aircraft)</source>
         <target xml:space="preserve">(%2 uçağın %1&apos;i)</target>
-        <context-group purpose="location"><context context-type="linenumber">90</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">94</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg388" approved="yes">
+      <trans-unit id="_msg394" approved="yes">
         <source xml:space="preserve">(%1 aircraft)</source>
         <target xml:space="preserve">(%1 uçak)</target>
-        <context-group purpose="location"><context context-type="linenumber">93</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">97</context></context-group>
       </trans-unit>
     </group>
   </body></file>
   <file original="/home/devel/FGFS/flightgear/src/GUI/CatalogListModel.cxx" datatype="cpp" source-language="en" target-language="tr"><body>
     <group restype="x-trolltech-linguist-context" resname="CatalogListModel">
-      <trans-unit id="_msg389" approved="yes">
+      <trans-unit id="_msg395" approved="yes">
         <source xml:space="preserve">The catalog data was not found on the server at the expected location (URL)</source>
         <target xml:space="preserve">Katalog verileri sunucuda beklenen konumda (URL) bulunamadı</target>
         <context-group purpose="location"><context context-type="linenumber">112</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg390" approved="yes">
+      <trans-unit id="_msg396" approved="yes">
         <source xml:space="preserve">The catalog is not compatible with the version of FlightGear</source>
         <target xml:space="preserve">Katalog, FlightGear sürümüyle uyumlu değil</target>
         <context-group purpose="location"><context context-type="linenumber">115</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg391" approved="yes">
+      <trans-unit id="_msg397" approved="yes">
         <source xml:space="preserve">The catalog server is blocking access from some reason (forbidden)</source>
         <target xml:space="preserve">Katalog sunucusu herhangi bir nedenle erişimi engelliyor (yasak)</target>
         <context-group purpose="location"><context context-type="linenumber">118</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg392" approved="yes">
+      <trans-unit id="_msg398" approved="yes">
         <source xml:space="preserve">disabled due to an internal error</source>
         <target xml:space="preserve">dahili bir hata nedeniyle devre dışı bırakıldı</target>
         <context-group purpose="location"><context context-type="linenumber">121</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg393" approved="yes">
+      <trans-unit id="_msg399" approved="yes">
         <source xml:space="preserve">%1 - %2</source>
         <target xml:space="preserve">%1 - %2</target>
         <context-group purpose="location"><context context-type="linenumber">124</context></context-group>
@@ -2208,22 +2247,22 @@ Yerel yol: %2</target>
   </body></file>
   <file original="/home/devel/FGFS/flightgear/src/GUI/FlightPlanController.cxx" datatype="cpp" source-language="en" target-language="tr"><body>
     <group restype="x-trolltech-linguist-context" resname="FlightPlanController">
-      <trans-unit id="_msg394" approved="yes">
+      <trans-unit id="_msg400" approved="yes">
         <source xml:space="preserve">No flight-plan</source>
         <target xml:space="preserve">Uçuş planı yok</target>
         <context-group purpose="location"><context context-type="linenumber">342</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg395" approved="yes">
+      <trans-unit id="_msg401" approved="yes">
         <source xml:space="preserve">From %1 (%2) to %3 (%4)</source>
         <target xml:space="preserve">%1 (%2)&apos;den %3&apos;e (%4)</target>
         <context-group purpose="location"><context context-type="linenumber">345</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg396" approved="yes">
+      <trans-unit id="_msg402" approved="yes">
         <source xml:space="preserve">Load a flight-plan</source>
         <target xml:space="preserve">Bir uçuş planı yükleyin</target>
         <context-group purpose="location"><context context-type="linenumber">536</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg397" approved="yes">
+      <trans-unit id="_msg403" approved="yes">
         <source xml:space="preserve">Save flight-plan</source>
         <target xml:space="preserve">Uçuş planını kaydet</target>
         <context-group purpose="location"><context context-type="linenumber">552</context></context-group>
@@ -2232,26 +2271,26 @@ Yerel yol: %2</target>
   </body></file>
   <file original="/home/devel/FGFS/flightgear/src/GUI/LaunchConfig.cxx" datatype="cpp" source-language="en" target-language="tr"><body>
     <group restype="x-trolltech-linguist-context" resname="LaunchConfig">
-      <trans-unit id="_msg398" approved="yes">
+      <trans-unit id="_msg404" approved="yes">
         <source xml:space="preserve">&lt;p&gt;Options passed on the command line:&lt;/p&gt;
 </source>
         <target xml:space="preserve">&lt;p&gt;Komut satırında geçirilen seçenekler:&lt;/p&gt;
 </target>
         <context-group purpose="location"><context context-type="linenumber">128</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg399" approved="yes">
+      <trans-unit id="_msg405" approved="yes">
         <source xml:space="preserve">&lt;p&gt;Options set in the launcher:&lt;/p&gt;
 </source>
         <target xml:space="preserve">&lt;p&gt;Başlatıcıda ayarlanan seçenekler:&lt;/p&gt;
 </target>
         <context-group purpose="location"><context context-type="linenumber">141</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg400" approved="yes">
+      <trans-unit id="_msg406" approved="yes">
         <source xml:space="preserve"> (will be skipped due to being specified as an additional argument)</source>
         <target xml:space="preserve"> (ek argüman olarak belirtildiği için atlanacak)</target>
         <context-group purpose="location"><context context-type="linenumber">158</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg401" approved="yes">
+      <trans-unit id="_msg407" approved="yes">
         <source xml:space="preserve">&lt;p&gt;Options set as additional arguments:&lt;/p&gt;
 </source>
         <target xml:space="preserve">&lt;p&gt;Ek argüman olarak ayarlanan seçenekler:&lt;/p&gt;
@@ -2262,294 +2301,298 @@ Yerel yol: %2</target>
   </body></file>
   <file original="/home/devel/FGFS/flightgear/src/GUI/LauncherController.cxx" datatype="cpp" source-language="en" target-language="tr"><body>
     <group restype="x-trolltech-linguist-context" resname="LauncherController">
-      <trans-unit id="_msg402" approved="yes">
+      <trans-unit id="_msg408" approved="yes">
         <source xml:space="preserve">Create download folder?</source>
         <target xml:space="preserve">İndirme klasörü oluştur?</target>
-        <context-group purpose="location"><context context-type="linenumber">361</context></context-group>
-      </trans-unit>
-      <trans-unit id="_msg403" approved="yes">
-        <source xml:space="preserve">The selected location for downloads does not exist. (%1) Create it?</source>
-        <target xml:space="preserve">İndirmeler için seçilen konum mevcut değil. (%1) Oluşturulsun mu?</target>
-        <context-group purpose="location"><context context-type="linenumber">362</context></context-group>
-      </trans-unit>
-      <trans-unit id="_msg404" approved="yes">
-        <source xml:space="preserve">Aircraft installation failed</source>
-        <target xml:space="preserve">Uçak kurulumu başarısız oldu</target>
-        <context-group purpose="location"><context context-type="linenumber">788</context></context-group>
-      </trans-unit>
-      <trans-unit id="_msg405" approved="yes">
-        <source xml:space="preserve">An error occurred installing the aircraft %1: %2</source>
-        <target xml:space="preserve">%1 uçağı yüklenirken bir hata oluştu: %2</target>
-        <context-group purpose="location"><context context-type="linenumber">789</context></context-group>
-      </trans-unit>
-      <trans-unit id="_msg406" approved="yes">
-        <source xml:space="preserve">Restore all settings to defaults?</source>
-        <target xml:space="preserve">Tüm ayarlar varsayılanlara geri yüklensin mi?</target>
-        <context-group purpose="location"><context context-type="linenumber">808</context></context-group>
-      </trans-unit>
-      <trans-unit id="_msg407" approved="yes">
-        <source xml:space="preserve">Restoring settings to their defaults may affect available add-ons such as scenery or aircraft.</source>
-        <target xml:space="preserve">Ayarları varsayılan değerlerine döndürmek, manzara veya uçak gibi mevcut eklentileri etkileyebilir.</target>
-        <context-group purpose="location"><context context-type="linenumber">809</context></context-group>
-      </trans-unit>
-      <trans-unit id="_msg408" approved="yes">
-        <source xml:space="preserve">Restore and restart now</source>
-        <target xml:space="preserve">Şimdi geri yükle ve yeniden başlat</target>
-        <context-group purpose="location"><context context-type="linenumber">810</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">358</context></context-group>
       </trans-unit>
       <trans-unit id="_msg409" approved="yes">
-        <source xml:space="preserve">Currently the built-in data files are being used</source>
-        <target xml:space="preserve">Şu anda yerleşik veri dosyaları kullanılıyor</target>
-        <context-group purpose="location"><context context-type="linenumber">835</context></context-group>
+        <source xml:space="preserve">The selected location for downloads does not exist. (%1) Create it?</source>
+        <target xml:space="preserve">İndirmeler için seçilen konum mevcut değil. (%1) Oluşturulsun mu?</target>
+        <context-group purpose="location"><context context-type="linenumber">359</context></context-group>
       </trans-unit>
       <trans-unit id="_msg410" approved="yes">
-        <source xml:space="preserve">Currently using location: %1</source>
-        <target xml:space="preserve">Şu anda konum kullanılıyor: %1</target>
-        <context-group purpose="location"><context context-type="linenumber">838</context></context-group>
+        <source xml:space="preserve">Aircraft installation failed</source>
+        <target xml:space="preserve">Uçak kurulumu başarısız oldu</target>
+        <context-group purpose="location"><context context-type="linenumber">785</context></context-group>
       </trans-unit>
       <trans-unit id="_msg411" approved="yes">
-        <source xml:space="preserve">Change the data files used by FlightGear?</source>
-        <target xml:space="preserve">FlightGear tarafından kullanılan veri dosyaları değiştirilsin mi?</target>
-        <context-group purpose="location"><context context-type="linenumber">842</context></context-group>
+        <source xml:space="preserve">An error occurred installing the aircraft %1: %2</source>
+        <target xml:space="preserve">%1 uçağı yüklenirken bir hata oluştu: %2</target>
+        <context-group purpose="location"><context context-type="linenumber">786</context></context-group>
       </trans-unit>
       <trans-unit id="_msg412" approved="yes">
-        <source xml:space="preserve">FlightGear requires additional files to operate. (Also called the base package, or fg-data) You can restart FlightGear and choose a different data files location, or restore the default setting. %1</source>
-        <target xml:space="preserve">FlightGear&apos;ın çalışması için ek dosyalar gerekir. (Ayrıca temel paket veya fg-data olarak da adlandırılır) FlightGear&apos;ı yeniden başlatabilir ve farklı bir veri dosyası konumu seçebilir veya varsayılan ayarı geri yükleyebilirsiniz. %1</target>
-        <context-group purpose="location"><context context-type="linenumber">843</context></context-group>
+        <source xml:space="preserve">Restore all settings to defaults?</source>
+        <target xml:space="preserve">Tüm ayarlar varsayılanlara geri yüklensin mi?</target>
+        <context-group purpose="location"><context context-type="linenumber">805</context></context-group>
       </trans-unit>
       <trans-unit id="_msg413" approved="yes">
-        <source xml:space="preserve">Restart FlightGear now</source>
-        <target xml:space="preserve">FlightGear&apos;ı şimdi yeniden başlatın</target>
-        <context-group purpose="location"><context context-type="linenumber">847</context></context-group>
+        <source xml:space="preserve">Restoring settings to their defaults may affect available add-ons such as scenery or aircraft.</source>
+        <target xml:space="preserve">Ayarları varsayılan değerlerine döndürmek, manzara veya uçak gibi mevcut eklentileri etkileyebilir.</target>
+        <context-group purpose="location"><context context-type="linenumber">806</context></context-group>
       </trans-unit>
       <trans-unit id="_msg414" approved="yes">
-        <source xml:space="preserve">Choose a saved configuration</source>
-        <target xml:space="preserve">Kaydedilmiş bir konfigürasyon seçin</target>
-        <context-group purpose="location"><context context-type="linenumber">863</context></context-group>
+        <source xml:space="preserve">Restore and restart now</source>
+        <target xml:space="preserve">Şimdi geri yükle ve yeniden başlat</target>
+        <context-group purpose="location"><context context-type="linenumber">807</context></context-group>
       </trans-unit>
       <trans-unit id="_msg415" approved="yes">
-        <source xml:space="preserve">Save the current configuration</source>
-        <target xml:space="preserve">Mevcut yapılandırmayı kaydet</target>
-        <context-group purpose="location"><context context-type="linenumber">873</context></context-group>
+        <source xml:space="preserve">Currently the built-in data files are being used</source>
+        <target xml:space="preserve">Şu anda yerleşik veri dosyaları kullanılıyor</target>
+        <context-group purpose="location"><context context-type="linenumber">832</context></context-group>
       </trans-unit>
       <trans-unit id="_msg416" approved="yes">
+        <source xml:space="preserve">Currently using location: %1</source>
+        <target xml:space="preserve">Şu anda konum kullanılıyor: %1</target>
+        <context-group purpose="location"><context context-type="linenumber">835</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg417" approved="yes">
+        <source xml:space="preserve">Change the data files used by FlightGear?</source>
+        <target xml:space="preserve">FlightGear tarafından kullanılan veri dosyaları değiştirilsin mi?</target>
+        <context-group purpose="location"><context context-type="linenumber">839</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg418" approved="yes">
+        <source xml:space="preserve">FlightGear requires additional files to operate. (Also called the base package, or fg-data) You can restart FlightGear and choose a different data files location, or restore the default setting. %1</source>
+        <target xml:space="preserve">FlightGear&apos;ın çalışması için ek dosyalar gerekir. (Ayrıca temel paket veya fg-data olarak da adlandırılır) FlightGear&apos;ı yeniden başlatabilir ve farklı bir veri dosyası konumu seçebilir veya varsayılan ayarı geri yükleyebilirsiniz. %1</target>
+        <context-group purpose="location"><context context-type="linenumber">840</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg419" approved="yes">
+        <source xml:space="preserve">Restart FlightGear now</source>
+        <target xml:space="preserve">FlightGear&apos;ı şimdi yeniden başlatın</target>
+        <context-group purpose="location"><context context-type="linenumber">844</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg420" approved="yes">
+        <source xml:space="preserve">Choose a saved configuration</source>
+        <target xml:space="preserve">Kaydedilmiş bir konfigürasyon seçin</target>
+        <context-group purpose="location"><context context-type="linenumber">860</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg421" approved="yes">
+        <source xml:space="preserve">Save the current configuration</source>
+        <target xml:space="preserve">Mevcut yapılandırmayı kaydet</target>
+        <context-group purpose="location"><context context-type="linenumber">870</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg422" approved="yes">
+        <source xml:space="preserve">Fly!</source>
+        <target xml:space="preserve">Uçuş!</target>
+        <context-group purpose="location"><context context-type="linenumber">929</context></context-group>
+        <context-group><context context-type="x-gettext-msgctxt">For a helicopter</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg423" approved="yes">
         <source xml:space="preserve">Fly!</source>
         <target xml:space="preserve">Uçuş!</target>
         <context-group purpose="location"><context context-type="linenumber">932</context></context-group>
-        <context-group><context context-type="x-gettext-msgctxt">For a helicopter</context></context-group>
-      </trans-unit>
-      <trans-unit id="_msg417" approved="yes">
-        <source xml:space="preserve">Fly!</source>
-        <target xml:space="preserve">Uçuş!</target>
-        <context-group purpose="location"><context context-type="linenumber">935</context></context-group>
         <context-group><context context-type="x-gettext-msgctxt">For a spaceship</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg418" approved="yes">
+      <trans-unit id="_msg424" approved="yes">
         <source xml:space="preserve">Fly!</source>
         <target xml:space="preserve">Uçuş!</target>
-        <context-group purpose="location"><context context-type="linenumber">939</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">936</context></context-group>
       </trans-unit>
     </group>
   </body></file>
   <file original="/home/devel/FGFS/flightgear/src/GUI/LauncherMainWindow.cxx" datatype="cpp" source-language="en" target-language="tr"><body>
     <group restype="x-trolltech-linguist-context" resname="LauncherMainWindow">
-      <trans-unit id="_msg419" approved="yes">
+      <trans-unit id="_msg425" approved="yes">
         <source xml:space="preserve">File</source>
         <target xml:space="preserve">Dosya</target>
-        <context-group purpose="location"><context context-type="linenumber">58</context></context-group>
-      </trans-unit>
-      <trans-unit id="_msg420" approved="yes">
-        <source xml:space="preserve">Open saved configuration...</source>
-        <target xml:space="preserve">Kaydedilmiş yapılandırmayı aç...</target>
-        <context-group purpose="location"><context context-type="linenumber">59</context></context-group>
-      </trans-unit>
-      <trans-unit id="_msg421" approved="yes">
-        <source xml:space="preserve">Save configuration as...</source>
-        <target xml:space="preserve">Yapılandırmayı farklı kaydet...</target>
-        <context-group purpose="location"><context context-type="linenumber">64</context></context-group>
-      </trans-unit>
-      <trans-unit id="_msg422" approved="yes">
-        <source xml:space="preserve">Tools</source>
-        <target xml:space="preserve">Araçlar</target>
-        <context-group purpose="location"><context context-type="linenumber">72</context></context-group>
-      </trans-unit>
-      <trans-unit id="_msg423" approved="yes">
-        <source xml:space="preserve">Restore defaults...</source>
-        <target xml:space="preserve">Varsayılanları geri yükle...</target>
-        <context-group purpose="location"><context context-type="linenumber">73</context></context-group>
-      </trans-unit>
-      <trans-unit id="_msg424" approved="yes">
-        <source xml:space="preserve">Select data files location...</source>
-        <target xml:space="preserve">Veri dosyaları konumunu seçin...</target>
-        <context-group purpose="location"><context context-type="linenumber">78</context></context-group>
-      </trans-unit>
-      <trans-unit id="_msg425" approved="yes">
-        <source xml:space="preserve">View command-line</source>
-        <target xml:space="preserve">Komut satırını görüntüle</target>
-        <context-group purpose="location"><context context-type="linenumber">83</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">62</context></context-group>
       </trans-unit>
       <trans-unit id="_msg426" approved="yes">
+        <source xml:space="preserve">Open saved configuration...</source>
+        <target xml:space="preserve">Kaydedilmiş yapılandırmayı aç...</target>
+        <context-group purpose="location"><context context-type="linenumber">63</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg427" approved="yes">
+        <source xml:space="preserve">Save configuration as...</source>
+        <target xml:space="preserve">Yapılandırmayı farklı kaydet...</target>
+        <context-group purpose="location"><context context-type="linenumber">68</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg428" approved="yes">
+        <source xml:space="preserve">Tools</source>
+        <target xml:space="preserve">Araçlar</target>
+        <context-group purpose="location"><context context-type="linenumber">76</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg429" approved="yes">
+        <source xml:space="preserve">Restore defaults...</source>
+        <target xml:space="preserve">Varsayılanları geri yükle...</target>
+        <context-group purpose="location"><context context-type="linenumber">77</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg430" approved="yes">
+        <source xml:space="preserve">Select data files location...</source>
+        <target xml:space="preserve">Veri dosyaları konumunu seçin...</target>
+        <context-group purpose="location"><context context-type="linenumber">82</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg431" approved="yes">
+        <source xml:space="preserve">View command-line</source>
+        <target xml:space="preserve">Komut satırını görüntüle</target>
+        <context-group purpose="location"><context context-type="linenumber">87</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg432" approved="yes">
+        <source xml:space="preserve">Your system is missing a required UI component (QtQuick Controls 2). This normally occurs on Linux platforms where Qt is split into many small packages. On Ubuntu/Debian systems, the package is called &apos;qml-module-qtquick-controls2&apos;</source>
+        <target xml:space="preserve">Sisteminizde gerekli bir ARAYÜZ bileşeni (QtQuick Controls 2) eksik. Bu normalde Qt&apos;nin birçok küçük pakete ayrıldığı Linux platformlarında gerçekleşir. Ubuntu/Debian sistemlerinde paketin adı &apos;qml-module-qtquick-controls2&apos;</target>
+        <context-group purpose="location"><context context-type="linenumber">104</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg433" approved="yes">
         <source xml:space="preserve">Problems occurred loading the user interface. This is usually due to missing modules on your system. Please report this error to the FlightGear developer list or forum, and take care to mention your system distribution, etc. Please also include the information provided below.
 </source>
         <target xml:space="preserve">Kullanıcı arayüzü yüklenirken sorunlar oluştu. Bu genellikle sisteminizdeki eksik modüllerden kaynaklanır. Lütfen bu hatayı FlightGear geliştirici listesine veya foruma bildirin ve sistem dağıtımınızdan vb. bahsetmeye dikkat edin. Lütfen aşağıda verilen bilgileri de ekleyin.
 </target>
-        <context-group purpose="location"><context context-type="linenumber">193</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">163</context></context-group>
       </trans-unit>
     </group>
   </body></file>
   <file original="/home/devel/FGFS/flightgear/src/GUI/LocationController.cxx" datatype="cpp" source-language="en" target-language="tr"><body>
     <group restype="x-trolltech-linguist-context" resname="LocationController">
-      <trans-unit id="_msg427" approved="yes">
+      <trans-unit id="_msg434" approved="yes">
         <source xml:space="preserve">N</source>
         <target xml:space="preserve">K</target>
-        <context-group purpose="location"><context context-type="linenumber">1076</context></context-group>
-      </trans-unit>
-      <trans-unit id="_msg428" approved="yes">
-        <source xml:space="preserve">NE</source>
-        <target xml:space="preserve">KD</target>
-        <context-group purpose="location"><context context-type="linenumber">1077</context></context-group>
-      </trans-unit>
-      <trans-unit id="_msg429" approved="yes">
-        <source xml:space="preserve">E</source>
-        <target xml:space="preserve">D</target>
-        <context-group purpose="location"><context context-type="linenumber">1078</context></context-group>
-      </trans-unit>
-      <trans-unit id="_msg430" approved="yes">
-        <source xml:space="preserve">SE</source>
-        <target xml:space="preserve">GD</target>
-        <context-group purpose="location"><context context-type="linenumber">1079</context></context-group>
-      </trans-unit>
-      <trans-unit id="_msg431" approved="yes">
-        <source xml:space="preserve">S</source>
-        <target xml:space="preserve">G</target>
-        <context-group purpose="location"><context context-type="linenumber">1080</context></context-group>
-      </trans-unit>
-      <trans-unit id="_msg432" approved="yes">
-        <source xml:space="preserve">SW</source>
-        <target xml:space="preserve">GB</target>
-        <context-group purpose="location"><context context-type="linenumber">1081</context></context-group>
-      </trans-unit>
-      <trans-unit id="_msg433" approved="yes">
-        <source xml:space="preserve">W</source>
-        <target xml:space="preserve">B</target>
-        <context-group purpose="location"><context context-type="linenumber">1082</context></context-group>
-      </trans-unit>
-      <trans-unit id="_msg434" approved="yes">
-        <source xml:space="preserve">NW</source>
-        <target xml:space="preserve">KB</target>
-        <context-group purpose="location"><context context-type="linenumber">1083</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">1074</context></context-group>
       </trans-unit>
       <trans-unit id="_msg435" approved="yes">
-        <source xml:space="preserve">at position %1</source>
-        <target xml:space="preserve">%1 konumunda</target>
-        <context-group purpose="location"><context context-type="linenumber">1098</context></context-group>
+        <source xml:space="preserve">NE</source>
+        <target xml:space="preserve">KD</target>
+        <context-group purpose="location"><context context-type="linenumber">1075</context></context-group>
       </trans-unit>
       <trans-unit id="_msg436" approved="yes">
-        <source xml:space="preserve">%1nm abeam</source>
-        <target xml:space="preserve">%1nm büyük</target>
-        <context-group purpose="location"><context context-type="linenumber">1105</context></context-group>
+        <source xml:space="preserve">E</source>
+        <target xml:space="preserve">D</target>
+        <context-group purpose="location"><context context-type="linenumber">1076</context></context-group>
       </trans-unit>
       <trans-unit id="_msg437" approved="yes">
-        <source xml:space="preserve">on %1nm final to</source>
-        <target xml:space="preserve">%1nm finalinde</target>
-        <context-group purpose="location"><context context-type="linenumber">1107</context></context-group>
+        <source xml:space="preserve">SE</source>
+        <target xml:space="preserve">GD</target>
+        <context-group purpose="location"><context context-type="linenumber">1077</context></context-group>
       </trans-unit>
       <trans-unit id="_msg438" approved="yes">
-        <source xml:space="preserve">on deck at %1 on</source>
-        <target xml:space="preserve">güvertede %1 üzerinde</target>
-        <context-group purpose="location"><context context-type="linenumber">1109</context></context-group>
+        <source xml:space="preserve">S</source>
+        <target xml:space="preserve">G</target>
+        <context-group purpose="location"><context context-type="linenumber">1078</context></context-group>
       </trans-unit>
       <trans-unit id="_msg439" approved="yes">
-        <source xml:space="preserve">%1 carrier %2 (%3)</source>
-        <target xml:space="preserve">%1 taşıyıcı %2 (%3)</target>
-        <context-group purpose="location"><context context-type="linenumber">1111</context></context-group>
+        <source xml:space="preserve">SW</source>
+        <target xml:space="preserve">GB</target>
+        <context-group purpose="location"><context context-type="linenumber">1079</context></context-group>
       </trans-unit>
       <trans-unit id="_msg440" approved="yes">
-        <source xml:space="preserve">No location selected</source>
-        <target xml:space="preserve">Konum seçilmedi</target>
-        <context-group purpose="location"><context context-type="linenumber">1114</context></context-group>
-        <context-group purpose="location"><context context-type="linenumber">1177</context></context-group>
+        <source xml:space="preserve">W</source>
+        <target xml:space="preserve">B</target>
+        <context-group purpose="location"><context context-type="linenumber">1080</context></context-group>
       </trans-unit>
       <trans-unit id="_msg441" approved="yes">
-        <source xml:space="preserve">on %1-mile final to active runway</source>
-        <target xml:space="preserve">aktif piste %1 millik finalde</target>
-        <context-group purpose="location"><context context-type="linenumber">1132</context></context-group>
+        <source xml:space="preserve">NW</source>
+        <target xml:space="preserve">KB</target>
+        <context-group purpose="location"><context context-type="linenumber">1081</context></context-group>
       </trans-unit>
       <trans-unit id="_msg442" approved="yes">
-        <source xml:space="preserve">on active runway</source>
-        <target xml:space="preserve">aktif pistte</target>
-        <context-group purpose="location"><context context-type="linenumber">1134</context></context-group>
+        <source xml:space="preserve">at position %1</source>
+        <target xml:space="preserve">%1 konumunda</target>
+        <context-group purpose="location"><context context-type="linenumber">1096</context></context-group>
       </trans-unit>
       <trans-unit id="_msg443" approved="yes">
-        <source xml:space="preserve">at an available parking position</source>
-        <target xml:space="preserve">müsait bir park konumunda</target>
-        <context-group purpose="location"><context context-type="linenumber">1137</context></context-group>
+        <source xml:space="preserve">%1nm abeam</source>
+        <target xml:space="preserve">%1nm büyük</target>
+        <context-group purpose="location"><context context-type="linenumber">1103</context></context-group>
       </trans-unit>
       <trans-unit id="_msg444" approved="yes">
-        <source xml:space="preserve">runway %1</source>
-        <target xml:space="preserve">pist %1</target>
-        <context-group purpose="location"><context context-type="linenumber">1139</context></context-group>
+        <source xml:space="preserve">on %1nm final to</source>
+        <target xml:space="preserve">%1nm finalinde</target>
+        <context-group purpose="location"><context context-type="linenumber">1105</context></context-group>
       </trans-unit>
       <trans-unit id="_msg445" approved="yes">
-        <source xml:space="preserve">on %2-mile final to %1</source>
-        <target xml:space="preserve">%1 için %2 mil finalinde</target>
-        <context-group purpose="location"><context context-type="linenumber">1142</context></context-group>
+        <source xml:space="preserve">on deck at %1 on</source>
+        <target xml:space="preserve">güvertede %1 üzerinde</target>
+        <context-group purpose="location"><context context-type="linenumber">1107</context></context-group>
       </trans-unit>
       <trans-unit id="_msg446" approved="yes">
-        <source xml:space="preserve">on %1</source>
-        <target xml:space="preserve">%1 de</target>
-        <context-group purpose="location"><context context-type="linenumber">1144</context></context-group>
+        <source xml:space="preserve">%1 carrier %2 (%3)</source>
+        <target xml:space="preserve">%1 taşıyıcı %2 (%3)</target>
+        <context-group purpose="location"><context context-type="linenumber">1109</context></context-group>
       </trans-unit>
       <trans-unit id="_msg447" approved="yes">
-        <source xml:space="preserve">on pad %1</source>
-        <target xml:space="preserve">%1 pedinde</target>
-        <context-group purpose="location"><context context-type="linenumber">1147</context></context-group>
+        <source xml:space="preserve">No location selected</source>
+        <target xml:space="preserve">Konum seçilmedi</target>
+        <context-group purpose="location"><context context-type="linenumber">1112</context></context-group>
       </trans-unit>
       <trans-unit id="_msg448" approved="yes">
-        <source xml:space="preserve">at parking position %1</source>
-        <target xml:space="preserve">%1 park konumunda</target>
-        <context-group purpose="location"><context context-type="linenumber">1149</context></context-group>
+        <source xml:space="preserve">on %1-mile final to active runway</source>
+        <target xml:space="preserve">aktif piste %1 millik finalde</target>
+        <context-group purpose="location"><context context-type="linenumber">1130</context></context-group>
       </trans-unit>
       <trans-unit id="_msg449" approved="yes">
-        <source xml:space="preserve">%2 (%1): %3</source>
-        <target xml:space="preserve">%2 (%1): %3</target>
-        <context-group purpose="location"><context context-type="linenumber">1152</context></context-group>
+        <source xml:space="preserve">on active runway</source>
+        <target xml:space="preserve">aktif pistte</target>
+        <context-group purpose="location"><context context-type="linenumber">1132</context></context-group>
       </trans-unit>
       <trans-unit id="_msg450" approved="yes">
-        <source xml:space="preserve">at</source>
-        <target xml:space="preserve">de</target>
-        <context-group purpose="location"><context context-type="linenumber">1154</context></context-group>
+        <source xml:space="preserve">at an available parking position</source>
+        <target xml:space="preserve">müsait bir park konumunda</target>
+        <context-group purpose="location"><context context-type="linenumber">1135</context></context-group>
       </trans-unit>
       <trans-unit id="_msg451" approved="yes">
-        <source xml:space="preserve">%1nm %2 of</source>
-        <target xml:space="preserve">%2 de %1nm</target>
-        <context-group purpose="location"><context context-type="linenumber">1156</context></context-group>
+        <source xml:space="preserve">runway %1</source>
+        <target xml:space="preserve">pist %1</target>
+        <context-group purpose="location"><context context-type="linenumber">1137</context></context-group>
       </trans-unit>
       <trans-unit id="_msg452" approved="yes">
-        <source xml:space="preserve">%2 waypoint %1</source>
-        <target xml:space="preserve">%2 yol noktası %1</target>
-        <context-group purpose="location"><context context-type="linenumber">1168</context></context-group>
+        <source xml:space="preserve">on %2-mile final to %1</source>
+        <target xml:space="preserve">%1 için %2 mil finalinde</target>
+        <context-group purpose="location"><context context-type="linenumber">1140</context></context-group>
       </trans-unit>
       <trans-unit id="_msg453" approved="yes">
+        <source xml:space="preserve">on %1</source>
+        <target xml:space="preserve">%1 de</target>
+        <context-group purpose="location"><context context-type="linenumber">1142</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg454" approved="yes">
+        <source xml:space="preserve">on pad %1</source>
+        <target xml:space="preserve">%1 pedinde</target>
+        <context-group purpose="location"><context context-type="linenumber">1145</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg455" approved="yes">
+        <source xml:space="preserve">at parking position %1</source>
+        <target xml:space="preserve">%1 park konumunda</target>
+        <context-group purpose="location"><context context-type="linenumber">1147</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg456" approved="yes">
+        <source xml:space="preserve">%2 (%1): %3</source>
+        <target xml:space="preserve">%2 (%1): %3</target>
+        <context-group purpose="location"><context context-type="linenumber">1150</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg457" approved="yes">
+        <source xml:space="preserve">at</source>
+        <target xml:space="preserve">de</target>
+        <context-group purpose="location"><context context-type="linenumber">1152</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg458" approved="yes">
+        <source xml:space="preserve">%1nm %2 of</source>
+        <target xml:space="preserve">%2 de %1nm</target>
+        <context-group purpose="location"><context context-type="linenumber">1154</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg459" approved="yes">
+        <source xml:space="preserve">%2 waypoint %1</source>
+        <target xml:space="preserve">%2 yol noktası %1</target>
+        <context-group purpose="location"><context context-type="linenumber">1166</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg460" approved="yes">
         <source xml:space="preserve">%4 %1 %2 (%3)</source>
         <target xml:space="preserve">%4 %1 %2 (%3)</target>
-        <context-group purpose="location"><context context-type="linenumber">1174</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">1172</context></context-group>
       </trans-unit>
     </group>
   </body></file>
   <file original="/home/devel/FGFS/flightgear/src/GUI/MPServersModel.cpp" datatype="cpp" source-language="en" target-language="tr"><body>
     <group restype="x-trolltech-linguist-context" resname="MPServersModel">
-      <trans-unit id="_msg454" approved="yes">
+      <trans-unit id="_msg461" approved="yes">
         <source xml:space="preserve">No servers available</source>
         <target xml:space="preserve">Kullanılabilir sunucu yok</target>
         <context-group purpose="location"><context context-type="linenumber">49</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg455" approved="yes">
+      <trans-unit id="_msg462" approved="yes">
         <source xml:space="preserve">Custom server</source>
         <target xml:space="preserve">Özel sunucu</target>
         <context-group purpose="location"><context context-type="linenumber">57</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg456" approved="yes">
+      <trans-unit id="_msg463" approved="yes">
         <source xml:space="preserve">%1 - %2</source>
         <target xml:space="preserve">%1 - %2</target>
         <context-group purpose="location"><context context-type="linenumber">67</context></context-group>
@@ -2558,271 +2601,271 @@ Yerel yol: %2</target>
   </body></file>
   <file original="/home/devel/FGFS/flightgear/src/GUI/QmlAircraftInfo.cxx" datatype="cpp" source-language="en" target-language="tr"><body>
     <group restype="x-trolltech-linguist-context" resname="QObject">
-      <trans-unit id="_msg457" approved="yes">
+      <trans-unit id="_msg464" approved="yes">
         <source xml:space="preserve">On approach</source>
         <target xml:space="preserve">Yaklaşırken</target>
-        <context-group purpose="location"><context context-type="linenumber">128</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">129</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg458" approved="yes">
+      <trans-unit id="_msg465" approved="yes">
         <source xml:space="preserve">Ready for take-off</source>
         <target xml:space="preserve">Kalkış için hazır</target>
-        <context-group purpose="location"><context context-type="linenumber">130</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">131</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg459" approved="yes">
+      <trans-unit id="_msg466" approved="yes">
         <source xml:space="preserve">Parked, cold &amp; dark</source>
         <target xml:space="preserve">Park edilmiş, soğuk ve karanlık</target>
-        <context-group purpose="location"><context context-type="linenumber">132</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">133</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg460" approved="yes">
+      <trans-unit id="_msg467" approved="yes">
         <source xml:space="preserve">Automatic</source>
         <target xml:space="preserve">Otomatik</target>
-        <context-group purpose="location"><context context-type="linenumber">134</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">135</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg461" approved="yes">
+      <trans-unit id="_msg468" approved="yes">
         <source xml:space="preserve">Cruise</source>
         <target xml:space="preserve">Dolaşma</target>
-        <context-group purpose="location"><context context-type="linenumber">136</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">137</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg462" approved="yes">
+      <trans-unit id="_msg469" approved="yes">
         <source xml:space="preserve">Ready to taxi</source>
         <target xml:space="preserve">Taksiye hazır</target>
-        <context-group purpose="location"><context context-type="linenumber">138</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">139</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg463" approved="yes">
+      <trans-unit id="_msg470" approved="yes">
         <source xml:space="preserve">On approach to a carrier</source>
         <target xml:space="preserve">Bir taşıyıcıya yaklaşırken</target>
-        <context-group purpose="location"><context context-type="linenumber">140</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">141</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg464" approved="yes">
+      <trans-unit id="_msg471" approved="yes">
         <source xml:space="preserve">Ready for catapult launch</source>
         <target xml:space="preserve">Mancınık fırlatmaya hazır</target>
-        <context-group purpose="location"><context context-type="linenumber">142</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">143</context></context-group>
       </trans-unit>
     </group>
     <group restype="x-trolltech-linguist-context" resname="StatesModel">
-      <trans-unit id="_msg465" approved="yes">
+      <trans-unit id="_msg472" approved="yes">
         <source xml:space="preserve">Select state based on startup position.</source>
         <target xml:space="preserve">Başlangıç konumuna göre durumu seçin.</target>
-        <context-group purpose="location"><context context-type="linenumber">190</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">191</context></context-group>
       </trans-unit>
     </group>
   </body></file>
   <file original="/home/devel/FGFS/flightgear/src/GUI/QtLauncher.cxx" datatype="cpp" source-language="en" target-language="tr"><body>
     <group restype="x-trolltech-linguist-context" resname="initNavCache">
-      <trans-unit id="_msg466" approved="yes">
+      <trans-unit id="_msg473" approved="yes">
         <source xml:space="preserve">Reading airport data</source>
         <target xml:space="preserve">Havaalanı verilerini okunuyor</target>
-        <context-group purpose="location"><context context-type="linenumber">98</context></context-group>
-      </trans-unit>
-      <trans-unit id="_msg467" approved="yes">
-        <source xml:space="preserve">Loading airports</source>
-        <target xml:space="preserve">Havaalanları yükleniyor</target>
         <context-group purpose="location"><context context-type="linenumber">99</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg468" approved="yes">
-        <source xml:space="preserve">Loading waypoint data</source>
-        <target xml:space="preserve">Ara nokta verilerinin yükleniyor</target>
+      <trans-unit id="_msg474" approved="yes">
+        <source xml:space="preserve">Loading airports</source>
+        <target xml:space="preserve">Havaalanları yükleniyor</target>
         <context-group purpose="location"><context context-type="linenumber">100</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg469" approved="yes">
-        <source xml:space="preserve">Loading navigation data</source>
-        <target xml:space="preserve">Navigasyon verileri yükleniyor</target>
+      <trans-unit id="_msg475" approved="yes">
+        <source xml:space="preserve">Loading waypoint data</source>
+        <target xml:space="preserve">Ara nokta verilerinin yükleniyor</target>
         <context-group purpose="location"><context context-type="linenumber">101</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg470" approved="yes">
-        <source xml:space="preserve">Loading point-of-interest data</source>
-        <target xml:space="preserve">İlgi noktası verileri yükleniyor</target>
+      <trans-unit id="_msg476" approved="yes">
+        <source xml:space="preserve">Loading navigation data</source>
+        <target xml:space="preserve">Navigasyon verileri yükleniyor</target>
         <context-group purpose="location"><context context-type="linenumber">102</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg471" approved="yes">
+      <trans-unit id="_msg477" approved="yes">
+        <source xml:space="preserve">Loading point-of-interest data</source>
+        <target xml:space="preserve">İlgi noktası verileri yükleniyor</target>
+        <context-group purpose="location"><context context-type="linenumber">103</context></context-group>
+      </trans-unit>
+      <trans-unit id="_msg478" approved="yes">
         <source xml:space="preserve">Initialising navigation data, this may take several minutes</source>
         <target xml:space="preserve">Navigasyon verileri başlatılıyor, bu işlem birkaç dakika sürebilir</target>
-        <context-group purpose="location"><context context-type="linenumber">107</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">108</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg472" approved="yes">
+      <trans-unit id="_msg479" approved="yes">
         <source xml:space="preserve">Another copy of FlightGear is creating the navigation database. Waiting for it to finish.</source>
         <target xml:space="preserve">FlightGear&apos;ın başka bir kopyası, navigasyon veritabanını oluşturuyor. Bitirmesini bekliyorum.</target>
-        <context-group purpose="location"><context context-type="linenumber">113</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">114</context></context-group>
       </trans-unit>
     </group>
     <group restype="x-trolltech-linguist-context" resname="macTranslationWarning">
-      <trans-unit id="_msg473" approved="yes">
+      <trans-unit id="_msg480" approved="yes">
         <source xml:space="preserve">Application running from download location</source>
         <target xml:space="preserve">İndirme konumundan çalışan uygulama</target>
-        <context-group purpose="location"><context context-type="linenumber">487</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">483</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg474" approved="yes">
+      <trans-unit id="_msg481" approved="yes">
         <source xml:space="preserve">FlightGear is running from the download image. For better performance and to avoid potential problems, please copy FlightGear to some other location, such as your desktop or Applications folder.</source>
         <target xml:space="preserve">FlightGear, indirme görüntüsünden çalışıyor. Daha iyi performans ve olası sorunlardan kaçınmak için lütfen FlightGear&apos;ı masaüstünüz veya Uygulamalar klasörünüz gibi başka bir konuma kopyalayın.</target>
-        <context-group purpose="location"><context context-type="linenumber">488</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">484</context></context-group>
       </trans-unit>
     </group>
     <group restype="x-trolltech-linguist-context" resname="LockFileDialog">
-      <trans-unit id="_msg475" approved="yes">
+      <trans-unit id="_msg482" approved="yes">
         <source xml:space="preserve">Multiple copies of FlightGear running</source>
         <target xml:space="preserve">FlightGear&apos;ın birden çok kopyası çalışıyor</target>
-        <context-group purpose="location"><context context-type="linenumber">742</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">734</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg476" approved="yes">
+      <trans-unit id="_msg483" approved="yes">
         <source xml:space="preserve">FlightGear has detected another copy is already running. This copy will run in read-only mode, so downloads will not be possible, and settings will not be saved.</source>
         <target xml:space="preserve">FlightGear başka bir kopyanın zaten çalışmakta olduğunu tespit etti. Bu kopya salt okunur modda çalışacak, bu nedenle indirmeler mümkün olmayacak ve ayarlar kaydedilmeyecek.</target>
-        <context-group purpose="location"><context context-type="linenumber">744</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">736</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg477" approved="yes">
+      <trans-unit id="_msg484" approved="yes">
         <source xml:space="preserve">If you are sure another copy is not running on this computer, you can choose to reset the lock file, and run this copy as normal. Alternatively, you can close this copy of the software.</source>
         <target xml:space="preserve">Bu bilgisayarda başka bir kopyanın çalışmadığından eminseniz, kilit dosyasını sıfırlamayı seçebilir ve bu kopyayı normal şekilde çalıştırabilirsiniz. Alternatif olarak, yazılımın bu kopyasını kapatabilirsiniz.</target>
-        <context-group purpose="location"><context context-type="linenumber">749</context></context-group>
+        <context-group purpose="location"><context context-type="linenumber">741</context></context-group>
       </trans-unit>
     </group>
   </body></file>
   <file original="/home/devel/FGFS/flightgear/src/GUI/UnitsModel.cxx" datatype="cpp" source-language="en" target-language="tr"><body>
     <group restype="x-trolltech-linguist-context" resname="UnitsModel">
-      <trans-unit id="_msg478" approved="yes">
+      <trans-unit id="_msg485" approved="yes">
         <source xml:space="preserve">ft</source>
         <target xml:space="preserve">fit</target>
         <context-group purpose="location"><context context-type="linenumber">73</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg479" approved="yes">
+      <trans-unit id="_msg486" approved="yes">
         <source xml:space="preserve">feet above sea-level (MSL)</source>
         <target xml:space="preserve">deniz seviyesinden ayak yüksekliği (MSL)</target>
         <context-group purpose="location"><context context-type="linenumber">73</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg480" approved="yes">
+      <trans-unit id="_msg487" approved="yes">
         <source xml:space="preserve">ft AGL</source>
         <target xml:space="preserve">ft AGL</target>
         <context-group purpose="location"><context context-type="linenumber">74</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg481" approved="yes">
+      <trans-unit id="_msg488" approved="yes">
         <source xml:space="preserve">feet above ground level (AGL)</source>
         <target xml:space="preserve">yerden ayak yüksekliği (AGL)</target>
         <context-group purpose="location"><context context-type="linenumber">74</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg482" approved="yes">
+      <trans-unit id="_msg489" approved="yes">
         <source xml:space="preserve">ft above field</source>
         <target xml:space="preserve">alanın üstünde ft</target>
         <context-group purpose="location"><context context-type="linenumber">75</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg483" approved="yes">
+      <trans-unit id="_msg490" approved="yes">
         <source xml:space="preserve">feet above airfield</source>
         <target xml:space="preserve">hava sahasının üzerinde feet</target>
         <context-group purpose="location"><context context-type="linenumber">75</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg484" approved="yes">
+      <trans-unit id="_msg491" approved="yes">
         <source xml:space="preserve">FL</source>
         <target xml:space="preserve">US</target>
         <context-group purpose="location"><context context-type="linenumber">76</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg485" approved="yes">
+      <trans-unit id="_msg492" approved="yes">
         <source xml:space="preserve">Flight-level</source>
         <target xml:space="preserve">Uçuş seviyesi</target>
         <context-group purpose="location"><context context-type="linenumber">76</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg486" approved="yes">
+      <trans-unit id="_msg493" approved="yes">
         <source xml:space="preserve">m</source>
         <target xml:space="preserve">m</target>
         <context-group purpose="location"><context context-type="linenumber">77</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg487" approved="yes">
+      <trans-unit id="_msg494" approved="yes">
         <source xml:space="preserve">meters above sea-level (MSL)</source>
         <target xml:space="preserve">deniz seviyesinden metre (MSL)</target>
         <context-group purpose="location"><context context-type="linenumber">77</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg488" approved="yes">
+      <trans-unit id="_msg495" approved="yes">
         <source xml:space="preserve">kts</source>
         <target xml:space="preserve">kts</target>
         <context-group purpose="location"><context context-type="linenumber">78</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg489" approved="yes">
+      <trans-unit id="_msg496" approved="yes">
         <source xml:space="preserve">Knots</source>
         <target xml:space="preserve">Knots</target>
         <context-group purpose="location"><context context-type="linenumber">78</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg490" approved="yes">
+      <trans-unit id="_msg497" approved="yes">
         <source xml:space="preserve">M</source>
         <target xml:space="preserve">M</target>
         <context-group purpose="location"><context context-type="linenumber">79</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg491" approved="yes">
+      <trans-unit id="_msg498" approved="yes">
         <source xml:space="preserve">Mach</source>
         <target xml:space="preserve">Mach</target>
         <context-group purpose="location"><context context-type="linenumber">79</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg492" approved="yes">
+      <trans-unit id="_msg499" approved="yes">
         <source xml:space="preserve">KM/H</source>
         <target xml:space="preserve">KM/S</target>
         <context-group purpose="location"><context context-type="linenumber">80</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg493" approved="yes">
+      <trans-unit id="_msg500" approved="yes">
         <source xml:space="preserve">Kilometers/hour</source>
         <target xml:space="preserve">Kilometre/saat</target>
         <context-group purpose="location"><context context-type="linenumber">80</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg494" approved="yes">
+      <trans-unit id="_msg501" approved="yes">
         <source xml:space="preserve">°True</source>
         <target xml:space="preserve">°Doğru</target>
         <context-group purpose="location"><context context-type="linenumber">81</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg495" approved="yes">
+      <trans-unit id="_msg502" approved="yes">
         <source xml:space="preserve">degrees true</source>
         <target xml:space="preserve">derece doğru</target>
         <context-group purpose="location"><context context-type="linenumber">81</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg496" approved="yes">
+      <trans-unit id="_msg503" approved="yes">
         <source xml:space="preserve">°Mag</source>
         <target xml:space="preserve">°Mag</target>
         <context-group purpose="location"><context context-type="linenumber">82</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg497" approved="yes">
+      <trans-unit id="_msg504" approved="yes">
         <source xml:space="preserve">degrees magnetic</source>
         <target xml:space="preserve">derece manyetik</target>
         <context-group purpose="location"><context context-type="linenumber">82</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg498" approved="yes">
+      <trans-unit id="_msg505" approved="yes">
         <source xml:space="preserve">UTC</source>
         <target xml:space="preserve">UTC</target>
         <context-group purpose="location"><context context-type="linenumber">83</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg499" approved="yes">
+      <trans-unit id="_msg506" approved="yes">
         <source xml:space="preserve">Universal coordinated time</source>
         <target xml:space="preserve">Evrensel koordineli zaman</target>
         <context-group purpose="location"><context context-type="linenumber">83</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg500" approved="yes">
+      <trans-unit id="_msg507" approved="yes">
         <source xml:space="preserve">Local</source>
         <target xml:space="preserve">Yerel</target>
         <context-group purpose="location"><context context-type="linenumber">84</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg501" approved="yes">
+      <trans-unit id="_msg508" approved="yes">
         <source xml:space="preserve">Local time</source>
         <target xml:space="preserve">Yerel zaman</target>
         <context-group purpose="location"><context context-type="linenumber">84</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg502" approved="yes">
+      <trans-unit id="_msg509" approved="yes">
         <source xml:space="preserve">Nm</source>
         <target xml:space="preserve">Dm</target>
         <context-group purpose="location"><context context-type="linenumber">85</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg503" approved="yes">
+      <trans-unit id="_msg510" approved="yes">
         <source xml:space="preserve">Nautical miles</source>
         <target xml:space="preserve">Deniz mili</target>
         <context-group purpose="location"><context context-type="linenumber">85</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg504" approved="yes">
+      <trans-unit id="_msg511" approved="yes">
         <source xml:space="preserve">Km</source>
         <target xml:space="preserve">Km</target>
         <context-group purpose="location"><context context-type="linenumber">86</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg505" approved="yes">
+      <trans-unit id="_msg512" approved="yes">
         <source xml:space="preserve">Kilometers</source>
         <target xml:space="preserve">Kilometre</target>
         <context-group purpose="location"><context context-type="linenumber">86</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg506" approved="yes">
+      <trans-unit id="_msg513" approved="yes">
         <source xml:space="preserve">MHz</source>
         <target xml:space="preserve">MHz</target>
         <context-group purpose="location"><context context-type="linenumber">88</context></context-group>
       </trans-unit>
-      <trans-unit id="_msg507" approved="yes">
+      <trans-unit id="_msg514" approved="yes">
         <source xml:space="preserve">kHz</source>
         <target xml:space="preserve">kHz</target>
         <context-group purpose="location"><context context-type="linenumber">89</context></context-group>
@@ -2831,7 +2874,7 @@ Yerel yol: %2</target>
   </body></file>
   <file original="/home/devel/FGFS/flightgear/src/GUI/qml/CatalogRefreshFailedNotification.qml" datatype="plaintext" source-language="en" target-language="tr"><body>
     <group restype="x-trolltech-linguist-context" resname="CatalogRefreshFailedNotification">
-      <trans-unit id="_msg508" approved="yes">
+      <trans-unit id="_msg515" approved="yes">
         <source xml:space="preserve">The catalog at &apos;%1&apos; failed to download and validate correctly. All aircraft it provides will be unavailable.</source>
         <target xml:space="preserve">&apos;%1&apos; adresindeki katalog düzgün yüklenemedi ve doğrulanamadı. Sağladığı tüm uçaklar kullanılamayacak.</target>
         <context-group purpose="location"><context context-type="linenumber">9</context></context-group>
diff --git a/Translations/tr/FlightGear-nonQt.xlf b/Translations/tr/FlightGear-nonQt.xlf
index 4048fba2b..f3eceed52 100644
--- a/Translations/tr/FlightGear-nonQt.xlf
+++ b/Translations/tr/FlightGear-nonQt.xlf
@@ -14,6 +14,10 @@
         <source xml:space="preserve">AI</source>
         <target xml:space="preserve">Tüm</target>
       </trans-unit>
+      <trans-unit id="menu/ai-objects:0" approved="yes">
+        <source xml:space="preserve">AI Objects</source>
+        <target xml:space="preserve">AI Nesneleri</target>
+      </trans-unit>
       <trans-unit id="menu/aircraft-center:0" approved="yes">
         <source xml:space="preserve">Aircraft Center (Experimental)</source>
         <target xml:space="preserve">Uçak Merkezi (Deneysel)</target>
@@ -26,6 +30,10 @@
         <source xml:space="preserve">Aircraft Help</source>
         <target xml:space="preserve">Uçak Yardımı</target>
       </trans-unit>
+      <trans-unit id="menu/als-filter-effects:0" approved="yes">
+        <source xml:space="preserve">ALS Filter Effects</source>
+        <target xml:space="preserve">ALS Filtre Efektleri</target>
+      </trans-unit>
       <trans-unit id="menu/atc-in-range:0" approved="yes">
         <source xml:space="preserve">ATC Services in Range</source>
         <target xml:space="preserve">Aralıktaki ATC Hizmetleri</target>
@@ -86,6 +94,10 @@
         <source xml:space="preserve">Dump Scene Graph</source>
         <target xml:space="preserve">Döküm Sahne Grafiği</target>
       </trans-unit>
+      <trans-unit id="menu/earthview:0" approved="yes">
+        <source xml:space="preserve">Earthview orbital rendering</source>
+        <target xml:space="preserve">Dünya görünümü yörünge oluşturma</target>
+      </trans-unit>
       <trans-unit id="menu/environment:0" approved="yes">
         <source xml:space="preserve">Environment</source>
         <target xml:space="preserve">Çevre</target>
@@ -98,6 +110,10 @@
         <source xml:space="preserve">Equipment</source>
         <target xml:space="preserve">Teçhizat</target>
       </trans-unit>
+      <trans-unit id="menu/error-reports:0" approved="yes">
+        <source xml:space="preserve">View Errors</source>
+        <target xml:space="preserve">Hataları Görüntüle</target>
+      </trans-unit>
       <trans-unit id="menu/exit:0" approved="yes">
         <source xml:space="preserve">Quit</source>
         <target xml:space="preserve">Çık</target>
@@ -122,6 +138,10 @@
         <source xml:space="preserve">File</source>
         <target xml:space="preserve">Dosya</target>
       </trans-unit>
+      <trans-unit id="menu/flight-recorder-control:0" approved="yes">
+        <source xml:space="preserve">Flight Recorder Control</source>
+        <target xml:space="preserve">Uçuş Kaydedici Kontrolü</target>
+      </trans-unit>
       <trans-unit id="menu/fuel-and-payload:0" approved="yes">
         <source xml:space="preserve">Fuel and Payload</source>
         <target xml:space="preserve">Yakıt ve Yük</target>
@@ -146,6 +166,10 @@
         <source xml:space="preserve">Help (opens in browser)</source>
         <target xml:space="preserve">Yardım (tarayıcıda açılır)</target>
       </trans-unit>
+      <trans-unit id="menu/highlighting:0" approved="yes">
+        <source xml:space="preserve">Highlighting</source>
+        <target xml:space="preserve">Vurgulama</target>
+      </trans-unit>
       <trans-unit id="menu/immatriculation:0" approved="yes">
         <source xml:space="preserve">Immatriculation</source>
         <target xml:space="preserve">Kayıt</target>
@@ -162,7 +186,7 @@
         <source xml:space="preserve">Instrument Settings</source>
         <target xml:space="preserve">Cihaz Ayarları</target>
       </trans-unit>
-      <trans-unit id="menu/interface-config:0" approved="yes">
+      <trans-unit id="menu/interface-config:0" translate="no" approved="yes">
         <source xml:space="preserve">User-interface Options</source>
         <target xml:space="preserve">Kullanıcı Arayüzü Seçenekleri</target>
       </trans-unit>
@@ -182,6 +206,10 @@
         <source xml:space="preserve">Lag Settings</source>
         <target xml:space="preserve">Gecikme Ayarları</target>
       </trans-unit>
+      <trans-unit id="menu/light-switches:0" approved="yes">
+        <source xml:space="preserve">Light switches</source>
+        <target xml:space="preserve">Işık anahtarları</target>
+      </trans-unit>
       <trans-unit id="menu/load-tape:0" approved="yes">
         <source xml:space="preserve">Load Flight Recorder Tape</source>
         <target xml:space="preserve">Uçuş Kaydedici Bandını Yükle</target>
@@ -414,6 +442,10 @@
         <source xml:space="preserve">Tiller Steering</source>
         <target xml:space="preserve">Yeke Direksiyon</target>
       </trans-unit>
+      <trans-unit id="menu/time-mode:0" approved="yes">
+        <source xml:space="preserve">Time Mode</source>
+        <target xml:space="preserve">Zaman Modu</target>
+      </trans-unit>
       <trans-unit id="menu/time-settings:0" approved="yes">
         <source xml:space="preserve">Time Settings</source>
         <target xml:space="preserve">Zaman Ayarları</target>
@@ -434,14 +466,70 @@
         <source xml:space="preserve">Tutorials</source>
         <target xml:space="preserve">Öğreticiler</target>
       </trans-unit>
+      <trans-unit id="menu/video-control:0" approved="yes">
+        <source xml:space="preserve">Video Control</source>
+        <target xml:space="preserve">Video Kontrolü</target>
+      </trans-unit>
+      <trans-unit id="menu/video-start:0" approved="yes">
+        <source xml:space="preserve">Video Start</source>
+        <target xml:space="preserve">Videoyu Başlat</target>
+      </trans-unit>
+      <trans-unit id="menu/video-stop:0" approved="yes">
+        <source xml:space="preserve">Video Stop</source>
+        <target xml:space="preserve">Videoyu Durdur</target>
+      </trans-unit>
       <trans-unit id="menu/view:0" approved="yes">
         <source xml:space="preserve">View</source>
         <target xml:space="preserve">Görünüm</target>
       </trans-unit>
+      <trans-unit id="menu/view-clone:0" approved="yes">
+        <source xml:space="preserve">Add Clone View</source>
+        <target xml:space="preserve">Klon Görünümü Ekle</target>
+      </trans-unit>
+      <trans-unit id="menu/view-last-pair:0" approved="yes">
+        <source xml:space="preserve">Add Pair View</source>
+        <target xml:space="preserve">Çift Görünüm Ekle</target>
+      </trans-unit>
+      <trans-unit id="menu/view-last-pair-double:0" approved="yes">
+        <source xml:space="preserve">Add Pair Foreground View</source>
+        <target xml:space="preserve">Çift Ön Plan Görünümü Ekle</target>
+      </trans-unit>
       <trans-unit id="menu/view-options:0" approved="yes">
         <source xml:space="preserve">View Options</source>
         <target xml:space="preserve">Görünüm Seçenekleri</target>
       </trans-unit>
+      <trans-unit id="menu/view-push:0" approved="yes">
+        <source xml:space="preserve">Push Pair View</source>
+        <target xml:space="preserve">Çift Görünümü İtin</target>
+      </trans-unit>
+      <trans-unit id="menu/volcanoes:0" approved="yes">
+        <source xml:space="preserve">Volcanoes</source>
+        <target xml:space="preserve">Volkanlar</target>
+      </trans-unit>
+      <trans-unit id="menu/vr-options:0" approved="yes">
+        <source xml:space="preserve">VR Options</source>
+        <target xml:space="preserve">VR Seçenekleri</target>
+      </trans-unit>
+      <trans-unit id="menu/walker:0" approved="yes">
+        <source xml:space="preserve">Walker</source>
+        <target xml:space="preserve">Yürüteç</target>
+      </trans-unit>
+      <trans-unit id="menu/walker-animation-dialog:0" approved="yes">
+        <source xml:space="preserve">Walker animation dialog</source>
+        <target xml:space="preserve">Yürüteç animasyonu iletişim kutusu</target>
+      </trans-unit>
+      <trans-unit id="menu/walker-equipment:0" approved="yes">
+        <source xml:space="preserve">Select Equipment</source>
+        <target xml:space="preserve">Ekipman Seçin</target>
+      </trans-unit>
+      <trans-unit id="menu/walker-theme:0" approved="yes">
+        <source xml:space="preserve">Select Theme</source>
+        <target xml:space="preserve">Tema Seçin</target>
+      </trans-unit>
+      <trans-unit id="menu/walker-toggle-outside:0" approved="yes">
+        <source xml:space="preserve">Toggle Walker outside</source>
+        <target xml:space="preserve">Yürüteç&apos;i dışarıda aç/kapat</target>
+      </trans-unit>
       <trans-unit id="menu/wildfire-settings:0" approved="yes">
         <source xml:space="preserve">Wildfire Settings</source>
         <target xml:space="preserve">Orman Yangını Ayarları</target>
@@ -464,6 +552,18 @@
         <source xml:space="preserve">Emit the set of AV400 strings required to drive a Garmin 400-series GPS from FlightGear</source>
         <target xml:space="preserve">Garmin 400 serisi bir GPS&apos;i Flightgear&apos;da sürmek için gereken AV400 dizelerini yayınlayın</target>
       </trans-unit>
+      <trans-unit id="options/AV400WSimA-desc:0" approved="yes">
+        <source xml:space="preserve">Open connection for &quot;A&quot; channel using Garmin WAAS GPS protocol</source>
+        <target xml:space="preserve">Garmin WAAS GPS protokolünü kullanarak &quot;A&quot; kanalı için bağlantıyı açın</target>
+      </trans-unit>
+      <trans-unit id="options/AV400WSimB-desc:0" approved="yes">
+        <source xml:space="preserve">Open connection for &quot;B&quot; channel using Garmin WAAS GPS protocol</source>
+        <target xml:space="preserve">Garmin WAAS GPS protokolünü kullanarak &quot;B&quot; kanalı için bağlantıyı açın</target>
+      </trans-unit>
+      <trans-unit id="options/addon-desc:0" approved="yes">
+        <source xml:space="preserve">Specify a path to addon;</source>
+        <target xml:space="preserve">Eklenti için bir yol belirtin;</target>
+      </trans-unit>
       <trans-unit id="options/adf1-desc:0" approved="yes">
         <source xml:space="preserve">Set the ADF1 radio frequency, optionally preceded by a card rotation.</source>
         <target xml:space="preserve">ADF1 radyo frekansını, isteğe bağlı olarak bir kart dönüşünden önce ayarlayın.</target>
@@ -488,7 +588,7 @@
         <source xml:space="preserve">Specify the exact directory to use for the aircraft (normally not required, but may be useful). Interpreted relatively to the current directory. Causes the &lt;path-cache&gt; from autosave_X_Y.xml, as well as --fg-aircraft and the FG_AIRCRAFT environment variable to be bypassed.</source>
         <target xml:space="preserve">Hava aracı için kullanılacak tam dizini belirtin (normalde gerekli değildir, ancak yararlı olabilir). Geçerli dizine göre yorumlanır. autosave_X_Y.xml&apos;deki &lt;path-cache&gt; öğesinin yanı sıra --fg-aircraft ve FG_AIRCRAFT ortam değişkeninin atlanmasına neden olur.</target>
       </trans-unit>
-      <trans-unit id="options/aircraft-model-options:0" approved="yes">
+      <trans-unit id="options/aircraft-model-options:0" translate="no" approved="yes">
         <source xml:space="preserve">Aircraft model directory (UIUC FDM ONLY)</source>
         <target xml:space="preserve">Uçak modeli dizini (YALNIZCA UIUC FDM)</target>
       </trans-unit>
@@ -500,6 +600,14 @@
         <source xml:space="preserve">Specify starting position relative to an airport</source>
         <target xml:space="preserve">Bir havaalanına göre başlangıç konumunu belirtin</target>
       </trans-unit>
+      <trans-unit id="options/allow-nasal-from-sockets-desc:0" approved="yes">
+        <source xml:space="preserve">Remove security flag, which means that network connections will be allowed full access to the simulator including running arbitrary scripts. Ensure you have adequate security (such as a firewall which blocks external connections).</source>
+        <target xml:space="preserve">Güvenlik işaretini kaldırın; bu, ağ bağlantılarının simülatöre rastgele komut dosyaları çalıştırmak da dahil olmak üzere tam erişime izin verileceği anlamına gelir. Yeterli güvenliğe sahip olduğunuzdan emin olun (harici bağlantıları engelleyen bir güvenlik duvarı gibi).</target>
+      </trans-unit>
+      <trans-unit id="options/allow-nasal-read-desc:0" approved="yes">
+        <source xml:space="preserve">Allow Nasal scripts to read files from directories listed as path (separate multiple paths with a semicolon (Windows) or a colon (UNIX)). By default, for security reasons, Nasal scripts can only read data from certain directories, such as $FG_ROOT, $FG_HOME, etc.</source>
+        <target xml:space="preserve">Nasal komut dosyalarının yol olarak listelenen dizinlerdeki dosyaları okumasına izin verin (birden çok yolu noktalı virgül (Windows) veya iki nokta üst üste (UNIX) ile ayırın). Varsayılan olarak, güvenlik nedenleriyle, Nasal komut dosyaları yalnızca $FG_ROOT, $FG_HOME vb. gibi belirli dizinlerdeki verileri okuyabilir.</target>
+      </trans-unit>
       <trans-unit id="options/altitude-desc:0" approved="yes">
         <source xml:space="preserve">Starting altitude</source>
         <target xml:space="preserve">Başlangıç irtifası</target>
@@ -533,10 +641,10 @@
         <target xml:space="preserve">Web tarayıcınızın yolunu belirtin</target>
       </trans-unit>
       <trans-unit id="options/callsign-desc:0" approved="yes">
-        <source xml:space="preserve">assign a unique name to a player</source>
-        <target xml:space="preserve">bir oyuncuya benzersiz bir ad atayın</target>
+        <source xml:space="preserve">Assign a unique name to a player</source>
+        <target xml:space="preserve">Bir oyuncuya benzersiz bir ad atayın</target>
       </trans-unit>
-      <trans-unit id="options/carrier-abeam-desc:0" approved="yes">
+      <trans-unit id="options/carrier-abeam-desc:0" translate="no" approved="yes">
         <source xml:space="preserve">Start on downwind abeam the selected carrier (must also specify a carrier)</source>
         <target xml:space="preserve">Seçilen taşıyıcıya doğru rüzgar yönünde başlayın (ayrıca bir taşıyıcı belirtmelidir)</target>
       </trans-unit>
@@ -544,6 +652,10 @@
         <source xml:space="preserve">Specify starting position on an AI carrier</source>
         <target xml:space="preserve">Bir AI taşıyıcısında başlangıç pozisyonunu belirtin</target>
       </trans-unit>
+      <trans-unit id="options/carrier-position-desc:0" approved="yes">
+        <source xml:space="preserve">Specify a starting position relative to the carrier where you can use the predefined abeam (start on downwind abeam) or FLOLS (start on final approach) values, or specify the name of the carrier&apos;s parking position. Must also specify a carrier.</source>
+        <target xml:space="preserve">Önceden tanımlanmış başlangıç (rüzgar yönünde başla) veya FLOLS (son yaklaşmada başla) değerlerini kullanabileceğiniz veya taşıyıcının park konumunun adını belirtebileceğiniz, taşıyıcıya göre bir başlangıç konumu belirtin. Ayrıca bir taşıyıcı belirtmelidir.</target>
+      </trans-unit>
       <trans-unit id="options/ceiling-desc:0" approved="yes">
         <source xml:space="preserve">Create an overcast ceiling, optionally with a specific thickness (defaults to 2000 ft).</source>
         <target xml:space="preserve">İsteğe bağlı olarak belirli bir kalınlığa sahip bir bulutlu tavan oluşturun (varsayılanı 2000 fit&apos;dir).</target>
@@ -556,6 +668,14 @@
         <source xml:space="preserve">Set the COM2 radio frequency</source>
         <target xml:space="preserve">COM2 radyo frekansını ayarlayın</target>
       </trans-unit>
+      <trans-unit id="options/composite-viewer-desc:0" approved="yes">
+        <source xml:space="preserve">Enable CompositeViewer (extra view windows)</source>
+        <target xml:space="preserve">Kompozit Görüntüleyiciyi Etkinleştir (ek görünüm pencereleri)</target>
+      </trans-unit>
+      <trans-unit id="options/compositor-desc:0" approved="yes">
+        <source xml:space="preserve">Specify the path to XML file for multi-pass rendering. The path is relative to $FG_ROOT (defaults to Compositor/default.xml).</source>
+        <target xml:space="preserve">Çok geçişli işleme için XML dosyasının yolunu belirtin. Yol, $FG_ROOT&apos;a göredir (varsayılan olarak Compositor/default.xml&apos;dir).</target>
+      </trans-unit>
       <trans-unit id="options/config-desc:0" approved="yes">
         <source xml:space="preserve">Load additional properties from path</source>
         <target xml:space="preserve">Yoldan ek özellikler yükle</target>
@@ -564,10 +684,18 @@
         <source xml:space="preserve">Display console (Windows specific)</source>
         <target xml:space="preserve">Ekran konsolu (Windows&apos;a özel)</target>
       </trans-unit>
+      <trans-unit id="options/data-desc:0" approved="yes">
+        <source xml:space="preserve">Specify an additional base data directory (FGData), before the $FG_ROOT directory</source>
+        <target xml:space="preserve">$FG_ROOT dizininden önce ek bir temel veri dizini (FGData) belirtin</target>
+      </trans-unit>
       <trans-unit id="options/debugging-options:0" approved="yes">
         <source xml:space="preserve">Debugging Options</source>
         <target xml:space="preserve">Hata Ayıklama Seçenekleri</target>
       </trans-unit>
+      <trans-unit id="options/developer-desc:0" approved="yes">
+        <source xml:space="preserve">Enable developer mode</source>
+        <target xml:space="preserve">Geliştirici modunu etkinleştir</target>
+      </trans-unit>
       <trans-unit id="options/disable-ai-models-desc:0" approved="yes">
         <source xml:space="preserve">Deprecated option (disable internal AI subsystem)</source>
         <target xml:space="preserve">Kullanımdan kaldırılan seçenek (dahili AI alt sistemini devre dışı bırakın)</target>
@@ -620,6 +748,14 @@
         <source xml:space="preserve">Disable fullscreen mode</source>
         <target xml:space="preserve">Tam ekran modunu devre dışı bırak</target>
       </trans-unit>
+      <trans-unit id="options/disable-gui-desc:0" approved="yes">
+        <source xml:space="preserve">Enable headless mode</source>
+        <target xml:space="preserve">Başsız modu etkinleştir</target>
+      </trans-unit>
+      <trans-unit id="options/disable-hold-short-desc:0" approved="yes">
+        <source xml:space="preserve">Disable the move to hold short position for multiplayer</source>
+        <target xml:space="preserve">Çok oyunculu için kısa pozisyon tutma hareketini devre dışı bırakın</target>
+      </trans-unit>
       <trans-unit id="options/disable-horizon-effect:0" approved="yes">
         <source xml:space="preserve">Disable celestial body growth illusion near the horizon</source>
         <target xml:space="preserve">Ufka yakın gök cismi büyüme yanılsamasını devre dışı bırak</target>
@@ -656,7 +792,7 @@
         <source xml:space="preserve">Disable METAR based real weather fetching</source>
         <target xml:space="preserve">METAR tabanlı gerçek hava durumu alımını devre dışı bırak</target>
       </trans-unit>
-      <trans-unit id="options/disable-rembrandt-desc:0" approved="yes">
+      <trans-unit id="options/disable-rembrandt-desc:0" translate="no" approved="yes">
         <source xml:space="preserve">Disable Rembrandt rendering</source>
         <target xml:space="preserve">Rembrandt oluşturmayı devre dışı bırak</target>
       </trans-unit>
@@ -664,6 +800,10 @@
         <source xml:space="preserve">Don&apos;t save preferences upon program exit</source>
         <target xml:space="preserve">Program çıkışında tercihleri kaydetme</target>
       </trans-unit>
+      <trans-unit id="options/disable-sentry-desc:0" approved="yes">
+        <source xml:space="preserve">Disable crash and error reports from being sent to the development team for analysis</source>
+        <target xml:space="preserve">Kilitlenme ve hata raporlarının analiz için geliştirme ekibine gönderilmesini devre dışı bırakın</target>
+      </trans-unit>
       <trans-unit id="options/disable-sound-desc:0" approved="yes">
         <source xml:space="preserve">Disable sound effects</source>
         <target xml:space="preserve">Ses efektlerini devre dışı bırak</target>
@@ -680,10 +820,18 @@
         <source xml:space="preserve">Disable automatic scenery downloads/updates</source>
         <target xml:space="preserve">Otomatik manzara indirmelerini/güncellemelerini devre dışı bırak</target>
       </trans-unit>
+      <trans-unit id="options/disable-texture-cache-desc:0" approved="yes">
+        <source xml:space="preserve">Disable texture cache (DDS)</source>
+        <target xml:space="preserve">Doku önbelleğini (DDS) devre dışı bırak</target>
+      </trans-unit>
       <trans-unit id="options/disable-textures-desc:0" approved="yes">
         <source xml:space="preserve">Disable textures</source>
         <target xml:space="preserve">Dokuları devre dışı bırak</target>
       </trans-unit>
+      <trans-unit id="options/disable-vr-desc:0" approved="yes">
+        <source xml:space="preserve">Disable VR</source>
+        <target xml:space="preserve">VR&apos;ı Devre dışı bırak</target>
+      </trans-unit>
       <trans-unit id="options/disable-wireframe-desc:0" approved="yes">
         <source xml:space="preserve">Disable wireframe drawing mode</source>
         <target xml:space="preserve">Tel kafes çizim modunu devre dışı bırak</target>
@@ -788,7 +936,7 @@
         <source xml:space="preserve">Enable METAR based real weather fetching (this requires an open internet connection)</source>
         <target xml:space="preserve">METAR tabanlı gerçek hava durumu alımını etkinleştirin (bu, açık bir internet bağlantısı gerektirir)</target>
       </trans-unit>
-      <trans-unit id="options/enable-rembrandt-desc:0" approved="yes">
+      <trans-unit id="options/enable-rembrandt-desc:0" translate="no" approved="yes">
         <source xml:space="preserve">Enable Rembrandt rendering</source>
         <target xml:space="preserve">Rembrandt oluşturmayı etkinleştir</target>
       </trans-unit>
@@ -796,6 +944,10 @@
         <source xml:space="preserve">Allow saving preferences at program exit</source>
         <target xml:space="preserve">Program çıkışında tercihleri kaydetmeye izin ver</target>
       </trans-unit>
+      <trans-unit id="options/enable-sentry-desc:0" approved="yes">
+        <source xml:space="preserve">Enable crash and error reports to be sent to the development team for analysis</source>
+        <target xml:space="preserve">Analiz için geliştirme ekibine gönderilecek kilitlenme ve hata raporlarını etkinleştirin</target>
+      </trans-unit>
       <trans-unit id="options/enable-sound-desc:0" approved="yes">
         <source xml:space="preserve">Enable sound effects</source>
         <target xml:space="preserve">Ses efektlerini etkinleştir</target>
@@ -812,10 +964,18 @@
         <source xml:space="preserve">Enable automatic scenery downloads/updates</source>
         <target xml:space="preserve">Otomatik manzara indirmelerini/güncellemelerini etkinleştir</target>
       </trans-unit>
+      <trans-unit id="options/enable-texture-cache-desc:0" approved="yes">
+        <source xml:space="preserve">Enable texture cache (DDS)</source>
+        <target xml:space="preserve">Doku önbelleğini (DDS) etkinleştir</target>
+      </trans-unit>
       <trans-unit id="options/enable-textures-desc:0" approved="yes">
         <source xml:space="preserve">Enable textures</source>
         <target xml:space="preserve">Dokuları etkinleştir</target>
       </trans-unit>
+      <trans-unit id="options/enable-vr-desc:0" approved="yes">
+        <source xml:space="preserve">Enable VR</source>
+        <target xml:space="preserve">VR&apos;ı Etkinleştir</target>
+      </trans-unit>
       <trans-unit id="options/enable-wireframe-desc:0" approved="yes">
         <source xml:space="preserve">Enable wireframe drawing mode</source>
         <target xml:space="preserve">Tel kafes çizim modunu etkinleştir</target>
@@ -916,6 +1076,14 @@
         <source xml:space="preserve">Specify flight path angle (can be positive)</source>
         <target xml:space="preserve">Uçuş yolu açısını belirtin (pozitif olabilir)</target>
       </trans-unit>
+      <trans-unit id="options/gmt:0" approved="yes">
+        <source xml:space="preserve">GMT</source>
+        <target xml:space="preserve">GMT</target>
+      </trans-unit>
+      <trans-unit id="options/graphics-preset-desc:0" approved="yes">
+        <source xml:space="preserve">Set graphic options from one of the presets</source>
+        <target xml:space="preserve">Ön ayarlardan birinden grafik seçeneklerini ayarlayın</target>
+      </trans-unit>
       <trans-unit id="options/heading-desc:0" approved="yes">
         <source xml:space="preserve">Specify heading (yaw) angle (Psi)</source>
         <target xml:space="preserve">Yön (yaw) açısını (Psi) belirtin</target>
@@ -940,6 +1108,14 @@
         <source xml:space="preserve">Hud displays number of triangles rendered</source>
         <target xml:space="preserve">Hud, oluşturulan üçgenlerin sayısını görüntüler</target>
       </trans-unit>
+      <trans-unit id="options/igc-desc:0" approved="yes">
+        <source xml:space="preserve">Open connection using the International Gliding Commission protocol</source>
+        <target xml:space="preserve">Uluslararası Planör Komisyonu protokolünü kullanarak bağlantıyı açın</target>
+      </trans-unit>
+      <trans-unit id="options/ignore-autosave-desc:0" approved="yes">
+        <source xml:space="preserve">Ignore the autosave file, i.e. the settings saved  in this file will not be loaded during startup, nor will the settings be saved to this file when closing the simulator</source>
+        <target xml:space="preserve">Otomatik kaydetme dosyasını yoksayın, yani bu dosyaya kaydedilen ayarlar başlatma sırasında yüklenmeyecek ve simülatör kapatılırken ayarlar bu dosyaya kaydedilmeyecektir</target>
+      </trans-unit>
       <trans-unit id="options/in-air-desc:0" approved="yes">
         <source xml:space="preserve">Start in air (implied when using --altitude)</source>
         <target xml:space="preserve">Havada başlayın ( --yükseklik kullanılırken ima edilir)</target>
@@ -956,6 +1132,10 @@
         <source xml:space="preserve">Enable screen shot http server on the specified port (replaced by --httpd)</source>
         <target xml:space="preserve">Belirtilen bağlantı noktasında ekran görüntüsü http sunucusunu etkinleştir (--httpd ile değiştirilir)</target>
       </trans-unit>
+      <trans-unit id="options/jsbsim-output-directive-file-desc:0" approved="yes">
+        <source xml:space="preserve">Log JSBSim properties in a CSV file. An output directives file contains an &lt;output type=&quot;CSV&quot;&gt;&lt;/output&gt; element, within which should be specified the parameters or parameter groups that should be logged.</source>
+        <target xml:space="preserve">JSBSim özelliklerini bir CSV dosyasına kaydedin. Bir çıktı yönergeleri dosyası, içinde günlüğe kaydedilmesi gereken parametrelerin veya parametre gruplarının belirtilmesi gereken bir &lt;output type=&quot;CSV&quot;&gt;&lt;/output&gt; öğesi içerir.</target>
+      </trans-unit>
       <trans-unit id="options/jsclient-desc:0" approved="yes">
         <source xml:space="preserve">Open connection to a remote joystick</source>
         <target xml:space="preserve">Uzak bir joystick ile bağlantıyı açın</target>
@@ -980,9 +1160,37 @@
         <source xml:space="preserve">Select aircraft livery</source>
         <target xml:space="preserve">Uçak görünümünü seçin</target>
       </trans-unit>
+      <trans-unit id="options/load-tape-create-video:0" approved="yes">
+        <source xml:space="preserve">Encode video while replaying tape specified by --load-tape</source>
+        <target xml:space="preserve">--kaseti yükle ile belirtilen bandı yeniden oynatırken videoyu kodlayın</target>
+      </trans-unit>
       <trans-unit id="options/load-tape-desc:0" approved="yes">
-        <source xml:space="preserve">Load recording of earlier flightgear session</source>
-        <target xml:space="preserve">Önceki uçuş teçhizatı oturumunun yükleme kaydı</target>
+        <source xml:space="preserve">Load recording of earlier FlightGear session. For &lt;name&gt;, if &lt;name&gt; ends with .fgdata it is treated as the local path of the recording file; otherwise we form the local path by prepending &lt;name&gt; with the tape directory and appending &quot;.fgtape&quot;. For &lt;url&gt; (starting with http:// or https://) we download the remote recording (which must be a Continuous recording) in the background to a url-dependent filename while replaying it; if the url-dependent filename already exists it is assumed to be a truncated download and we only download any remaining data.</source>
+        <target xml:space="preserve">Önceki FlightGear oturumunun kaydını yükleyin. &lt;name&gt; için, &lt;name&gt; .fgdata ile bitiyorsa, kayıt dosyasının yerel yolu olarak kabul edilir; aksi takdirde yerel yolu, &lt;name&gt; ile teyp dizini ekleyerek ve &quot;.fgtape&quot; ekleyerek oluştururuz. &lt;url&gt; için (http:// veya https:// ile başlayarak) arka planda uzaktan kaydı (Sürekli kayıt olması gerekir) yeniden oynatırken url&apos;ye bağlı bir dosya adına indiririz; url&apos;ye bağlı dosya adı zaten mevcutsa, bunun kesilmiş bir indirme olduğu varsayılır ve yalnızca kalan verileri indiririz.</target>
+      </trans-unit>
+      <trans-unit id="options/load-tape-fixed-dt:0" approved="yes">
+        <source xml:space="preserve">Set fixed-dt mode while replaying tape specified by --load-tape</source>
+        <target xml:space="preserve">--kaseti yükle tarafından belirtilen kaseti yeniden yürütürken sabit dt modunu ayarlayın</target>
+      </trans-unit>
+      <trans-unit id="options/local-aircraft-time:0" approved="yes">
+        <source xml:space="preserve">local aircraft time</source>
+        <target xml:space="preserve">yerel uçak saati</target>
+      </trans-unit>
+      <trans-unit id="options/lod-levels-desc:0" approved="yes">
+        <source xml:space="preserve">Specify the detail levels, where levels are a space-separated numeric list of levels. The default is &quot;1 3 5 7 9&quot;.</source>
+        <target xml:space="preserve">Düzeylerin boşlukla ayrılmış sayısal bir düzey listesi olduğu ayrıntı düzeylerini belirtin. Varsayılan &quot;1 3 5 7 9&quot;dur.</target>
+      </trans-unit>
+      <trans-unit id="options/lod-range-mult-desc:0" approved="yes">
+        <source xml:space="preserve">Specify the range multiplier (point from low to fine detail). Defaults is 2.</source>
+        <target xml:space="preserve">Aralık çarpanını belirtin (düşük ayrıntıdan ince ayrıntıya kadar). Varsayılanlar 2&apos;dir.</target>
+      </trans-unit>
+      <trans-unit id="options/lod-res-desc:0" approved="yes">
+        <source xml:space="preserve">Specify the resolution of the terrain grid. Defaults is 1.</source>
+        <target xml:space="preserve">Arazi ızgarasının çözünürlüğünü belirtin. Varsayılanlar 1&apos;dir.</target>
+      </trans-unit>
+      <trans-unit id="options/lod-texturing-desc:0" approved="yes">
+        <source xml:space="preserve">Specify the method of texturing the terrain. The default is bluemarble.</source>
+        <target xml:space="preserve">Araziyi düzebleme yöntemini belirtin. Varsayılan, mavi mermer&apos;dir.</target>
       </trans-unit>
       <trans-unit id="options/log-class-desc:0" approved="yes">
         <source xml:space="preserve">Specify which logging class(es) to use</source>
@@ -1025,13 +1233,17 @@
         <target xml:space="preserve">FDM&apos;yi bu hızda çalıştırın (saniyede yineleme)</target>
       </trans-unit>
       <trans-unit id="options/multiplay-desc:0" approved="yes">
-        <source xml:space="preserve">Specify multipilot communication settings</source>
-        <target xml:space="preserve">Çoklu pilot iletişim ayarlarını belirtin</target>
+        <source xml:space="preserve">Specify multipilot communication settings;</source>
+        <target xml:space="preserve">Çoklu pilot iletişim ayarlarını belirtin;</target>
       </trans-unit>
       <trans-unit id="options/multiplayer-options:0" approved="yes">
         <source xml:space="preserve">MultiPlayer Options</source>
         <target xml:space="preserve">Çoklu Oyuncu Seçenekleri</target>
       </trans-unit>
+      <trans-unit id="options/multiple-instance:0" approved="yes">
+        <source xml:space="preserve">multiple instances can be used</source>
+        <target xml:space="preserve">birden fazla örnek kullanılabilir</target>
+      </trans-unit>
       <trans-unit id="options/native-ctrls-desc:0" approved="yes">
         <source xml:space="preserve">Open connection using the FG Native Controls protocol</source>
         <target xml:space="preserve">FG Doğal Denetimler protokolünü kullanarak bağlantıyı açın</target>
@@ -1072,6 +1284,10 @@
         <source xml:space="preserve">Open connection using the NMEA protocol</source>
         <target xml:space="preserve">NMEA protokolünü kullanarak bağlantıyı açın</target>
       </trans-unit>
+      <trans-unit id="options/no-default-config-desc:0" approved="yes">
+        <source xml:space="preserve">Do not load any default configuration files (like .fgfsrc) unless explicitly specified with --config.</source>
+        <target xml:space="preserve">--yapılandırma ile açıkça belirtilmediği sürece, varsayılan yapılandırma dosyalarını (.fgfsrc gibi) yüklemeyin.</target>
+      </trans-unit>
       <trans-unit id="options/notrim-desc:0" approved="yes">
         <source xml:space="preserve">Do NOT attempt to trim the model</source>
         <target xml:space="preserve">Modeli kırpmaya ÇALIŞMAYIN</target>
@@ -1085,8 +1301,8 @@
         <target xml:space="preserve">Referans noktasına istikamet belirtin</target>
       </trans-unit>
       <trans-unit id="options/offset-distance-desc:0" approved="yes">
-        <source xml:space="preserve">Specify distance to reference point (statute miles)</source>
-        <target xml:space="preserve">Referans noktasına olan mesafeyi belirtin (mevzuat milleri)</target>
+        <source xml:space="preserve">Specify distance to reference point (nautical miles)</source>
+        <target xml:space="preserve">Referans noktasına olan mesafeyi belirtin (deniz mili)</target>
       </trans-unit>
       <trans-unit id="options/on-ground-desc:0" approved="yes">
         <source xml:space="preserve">Start at ground level (default)</source>
@@ -1101,8 +1317,8 @@
         <target xml:space="preserve">Bir havaalanında park yeri belirtin (bir havaalanı da belirtilmelidir)</target>
       </trans-unit>
       <trans-unit id="options/parkpos-desc:0" approved="yes">
-        <source xml:space="preserve">Specify which starting position on an AI carrier (must also specify a carrier)</source>
-        <target xml:space="preserve">Bir AI taşıyıcısında hangi başlangıç konumunu belirtin (bir taşıyıcı da belirtilmelidir)</target>
+        <source xml:space="preserve">Same as the --parking-id option</source>
+        <target xml:space="preserve">--park kimliği seçeneğiyle aynı</target>
       </trans-unit>
       <trans-unit id="options/pitch-desc:0" approved="yes">
         <source xml:space="preserve">Specify pitch angle (Theta)</source>
@@ -1140,10 +1356,18 @@
         <source xml:space="preserve">Open connection using the Ray Woodworth motion chair protocol</source>
         <target xml:space="preserve">Ray Woodworth hareketli sandalye protokolünü kullanarak bağlantıyı açın</target>
       </trans-unit>
+      <trans-unit id="options/read-only-desc:0" approved="yes">
+        <source xml:space="preserve">Make $FG_HOME read-only</source>
+        <target xml:space="preserve">$FG_HOME&apos;u salt okunur yap</target>
+      </trans-unit>
       <trans-unit id="options/rendering-options:0" approved="yes">
         <source xml:space="preserve">Rendering Options</source>
         <target xml:space="preserve">İşleme Seçenekleri</target>
       </trans-unit>
+      <trans-unit id="options/restart-launcher-desc:0" approved="yes">
+        <source xml:space="preserve">Open Launcher automatically when exiting FlightGear</source>
+        <target xml:space="preserve">FlightGear&apos;dan çıkarken Başlatıcı&apos;yı otomatik olarak açın</target>
+      </trans-unit>
       <trans-unit id="options/restore-defaults-desc:0" approved="yes">
         <source xml:space="preserve">Reset all user settings to their defaults (rendering options etc)</source>
         <target xml:space="preserve">Tüm kullanıcı ayarlarını varsayılanlarına sıfırlayın (oluşturma seçenekleri vb.)</target>
@@ -1168,7 +1392,7 @@
         <source xml:space="preserve">Specify starting runway (must also specify an airport)</source>
         <target xml:space="preserve">Başlangıç pistini belirtin (bir havalimanı da belirtilmelidir)</target>
       </trans-unit>
-      <trans-unit id="options/season-desc:0" approved="yes">
+      <trans-unit id="options/season-desc:0" translate="no" approved="yes">
         <source xml:space="preserve">Specify the startup season</source>
         <target xml:space="preserve">Başlangıç sezonunu belirtin</target>
       </trans-unit>
@@ -1204,17 +1428,33 @@
         <source xml:space="preserve">Specify a starting date/time with respect to</source>
         <target xml:space="preserve">Şuna göre bir başlangıç tarihi/saati belirtin</target>
       </trans-unit>
+      <trans-unit id="options/state-desc:0" approved="yes">
+        <source xml:space="preserve">Specify the initial state of the aircraft to the given value</source>
+        <target xml:space="preserve">Verilen değere uçağın ilk durumunu belirtin</target>
+      </trans-unit>
+      <trans-unit id="options/system-time:0" approved="yes">
+        <source xml:space="preserve">system time</source>
+        <target xml:space="preserve">sistem zamanı</target>
+      </trans-unit>
       <trans-unit id="options/telnet-desc:0" approved="yes">
         <source xml:space="preserve">Enable telnet server on the specified port</source>
         <target xml:space="preserve">Belirtilen bağlantı noktasında telnet sunucusunu etkinleştir</target>
       </trans-unit>
+      <trans-unit id="options/terrain-engine-desc:0" approved="yes">
+        <source xml:space="preserve">Specify the terrain engine you want to use: tilecache or pagedLOD</source>
+        <target xml:space="preserve">Kullanmak istediğiniz arazi motorunu belirtin: tilecache veya pagedLOD</target>
+      </trans-unit>
       <trans-unit id="options/terrasync-dir-desc:0" approved="yes">
         <source xml:space="preserve">Set target directory for scenery downloads</source>
         <target xml:space="preserve">Manzara indirmeleri için hedef dizini ayarla</target>
       </trans-unit>
+      <trans-unit id="options/texture-cache-dir-desc:0" approved="yes">
+        <source xml:space="preserve">Specify the DDS texture cache directory to be different than the default location</source>
+        <target xml:space="preserve">DDS doku önbellek dizinini varsayılan konumdan farklı olacak şekilde belirtin</target>
+      </trans-unit>
       <trans-unit id="options/texture-filtering-desc:0" approved="yes">
-        <source xml:space="preserve">Anisotropic Texture Filtering: values should be 1 (default),2,4,8 or 16</source>
-        <target xml:space="preserve">Anizotropik Doku Filtreleme: değerler 1 (varsayılan),2,4,8 veya 16 olmalıdır</target>
+        <source xml:space="preserve">Anisotropic Texture Filtering: values should be 1 (default), 2, 4, 8 or 16</source>
+        <target xml:space="preserve">Anizotropik Doku Filtreleme: değerler 1 (varsayılan), 2, 4, 8 veya 16 olmalıdır</target>
       </trans-unit>
       <trans-unit id="options/time-match-local-desc:0" approved="yes">
         <source xml:space="preserve">Synchronize time with local real-world time</source>
@@ -1260,6 +1500,10 @@
         <source xml:space="preserve">Specify velocity along the body X axis</source>
         <target xml:space="preserve">Gövde X ekseni boyunca hızı belirtin</target>
       </trans-unit>
+      <trans-unit id="options/uninstall-desc:0" approved="yes">
+        <source xml:space="preserve">Remove $FG_HOME directory. For Windows, it additionally removes TerraSync, Aircraft and TextureCache directories from download directory.</source>
+        <target xml:space="preserve">$FG_HOME dizinini kaldırın. Windows için ayrıca TerraSync, Aircraft ve TextureCache dizinlerini indirme dizininden kaldırır.</target>
+      </trans-unit>
       <trans-unit id="options/units-feet-desc:0" approved="yes">
         <source xml:space="preserve">Use feet for distances</source>
         <target xml:space="preserve">Mesafeler için feet kullanın</target>
@@ -1272,6 +1516,10 @@
         <source xml:space="preserve">Usage: fgfs [ option ... ]</source>
         <target xml:space="preserve">Kullanım: fgfs [ seçenek ... ]</target>
       </trans-unit>
+      <trans-unit id="options/use-with-terrain-engine-pagedlod:0" approved="yes">
+        <source xml:space="preserve">Use with --terrain-engine=pagedLOD</source>
+        <target xml:space="preserve">İle kullanın --arazi-motoru=pagedLOD</target>
+      </trans-unit>
       <trans-unit id="options/vBody-desc:0" approved="yes">
         <source xml:space="preserve">Specify velocity along the body Y axis</source>
         <target xml:space="preserve">Gövde Y ekseni boyunca hızı belirtin</target>
@@ -1293,8 +1541,8 @@
         <target xml:space="preserve">İlk hava hızını belirtin</target>
       </trans-unit>
       <trans-unit id="options/vehicle-desc:0" approved="yes">
-        <source xml:space="preserve">Select an vehicle profile as defined by a top level &lt;name&gt;-set.xml</source>
-        <target xml:space="preserve">Üst düzey &lt;name&gt;-set.xml tarafından tanımlanan bir araç profili seçin</target>
+        <source xml:space="preserve">Same as the --aircraft option</source>
+        <target xml:space="preserve">--uçak seçeneğiyle aynı</target>
       </trans-unit>
       <trans-unit id="options/verbose-desc:0" approved="yes">
         <source xml:space="preserve">Show all command line options when combined with --help or -h</source>
@@ -1313,12 +1561,12 @@
         <target xml:space="preserve">Düz ileriden öteleme olarak varsayılan ileri görüş yönünü belirtin. İzin verilen değerler SOL, SAĞ, MERKEZ veya derece cinsinden belirli bir sayıdır</target>
       </trans-unit>
       <trans-unit id="options/visibility-desc:0" approved="yes">
-        <source xml:space="preserve">Specify initial visibility</source>
-        <target xml:space="preserve">İlk görünürlüğü belirtin</target>
+        <source xml:space="preserve">Specify initial visibility in meters</source>
+        <target xml:space="preserve">İlk görünürlüğü metre cinsinden belirtin</target>
       </trans-unit>
       <trans-unit id="options/visibility-miles-desc:0" approved="yes">
-        <source xml:space="preserve">Specify initial visibility in miles</source>
-        <target xml:space="preserve">İlk görünürlüğü mil olarak belirtin</target>
+        <source xml:space="preserve">Specify initial visibility in statute miles</source>
+        <target xml:space="preserve">İlk görünürlüğü nizami mil olarak belirtin</target>
       </trans-unit>
       <trans-unit id="options/vor-desc:0" approved="yes">
         <source xml:space="preserve">Specify starting position relative to a VOR</source>
@@ -1354,6 +1602,142 @@
         <source xml:space="preserve">downloading scenery</source>
         <target xml:space="preserve">manzara indir</target>
       </trans-unit>
+      <trans-unit id="sys/error-3D-model-load:0" approved="yes">
+        <source xml:space="preserve">Error loading 3D model</source>
+        <target xml:space="preserve">3B model yüklenirken hata oluştu</target>
+      </trans-unit>
+      <trans-unit id="sys/error-aircraft-systems:0" approved="yes">
+        <source xml:space="preserve">Errors occured loading aircraft systems (fuel, electrical, hydrualics)</source>
+        <target xml:space="preserve">Uçak sistemlerinde (yakıt, elektrik, hidrolik) yüklenirken oluşan hatalar</target>
+      </trans-unit>
+      <trans-unit id="sys/error-audio-fx-load:0" approved="yes">
+        <source xml:space="preserve">Audio FX description contains errors</source>
+        <target xml:space="preserve">Ses FX açıklaması hatalar içeriyor</target>
+      </trans-unit>
+      <trans-unit id="sys/error-btg-load:0" approved="yes">
+        <source xml:space="preserve">Errors loading terrain (BTG)</source>
+        <target xml:space="preserve">Arazi yüklenirken hatalar (BTG)</target>
+      </trans-unit>
+      <trans-unit id="sys/error-category-addon:0" approved="yes">
+        <source xml:space="preserve">The add-on &apos;%VALUE%&apos; contains errors. Please report this to the add-on developers.</source>
+        <target xml:space="preserve">&apos;%VALUE%&apos; eklentisi hatalar içeriyor. Lütfen bunu eklenti geliştiricilerine bildirin.</target>
+      </trans-unit>
+      <trans-unit id="sys/error-category-aircraft:0" approved="yes">
+        <source xml:space="preserve">This aircraft (%VALUE%) contains errors. This may include visual issues, or the aircraft might not fly at all. Check for an updated version of the aircraft from its developers.</source>
+        <target xml:space="preserve">Bu uçak (%VALUE%) hatalar içeriyor. Bu, görsel sorunları içerebilir veya uçak hiç uçmayabilir. Geliştiricilerinden uçağın güncellenmiş bir versiyonunu kontrol edin.</target>
+      </trans-unit>
+      <trans-unit id="sys/error-category-aircraft-from-hangar:0" approved="yes">
+        <source xml:space="preserve">The selected aircraft (%VALUE%) contains errors. This may cause visual issues, or the aircraft might not fly at all. Please report the information below to the aircraft hangar&apos;s maintainers.</source>
+        <target xml:space="preserve">Seçilen uçak (%VALUE%) hata içeriyor. Bu, görsel sorunlara neden olabilir veya uçak hiç uçmayabilir. Lütfen aşağıdaki bilgileri uçak hangarının bakım görevlilerine bildirin.</target>
+      </trans-unit>
+      <trans-unit id="sys/error-category-custom-scenery:0" approved="yes">
+        <source xml:space="preserve">The custom scenery at &apos;%VALUE%&apos; contains errors. Parts may be missing, or the scenery may not load at all. Check for an updated version of the scenery.</source>
+        <target xml:space="preserve">&apos;%VALUE%&apos; konumundaki özel manzara hatalar içeriyor. Parçalar eksik olabilir veya manzara hiç yüklenmeyebilir. Manzaranın güncellenmiş bir versiyonunu kontrol edin.</target>
+      </trans-unit>
+      <trans-unit id="sys/error-category-fgdata:0" approved="yes">
+        <source xml:space="preserve">Errors were found loading the core simulator files (FGData). This usually indicates a problem with the installation, or your local disk.</source>
+        <target xml:space="preserve">Çekirdek simülatör dosyaları (FGData) yüklenirken hatalar bulundu. Bu genellikle kurulumda veya yerel diskinizde bir sorun olduğunu gösterir.</target>
+      </trans-unit>
+      <trans-unit id="sys/error-category-input-device:0" approved="yes">
+        <source xml:space="preserve">The joystick (input device) &apos;%VALUE%&apos; couldn&apos;t be loaded correctly. This usually means its configuration file is incorrect.</source>
+        <target xml:space="preserve">Joystick (giriş aygıtı) &apos;%VALUE%&apos; doğru yüklenemedi. Bu genellikle yapılandırma dosyasının yanlış olduğu anlamına gelir.</target>
+      </trans-unit>
+      <trans-unit id="sys/error-category-multiplayer:0" approved="yes">
+        <source xml:space="preserve">Loading a model for another pilot (via multi-player) failed. The other pilot will appear as a default model. (You can disable these errors from the multiplayer settings dialog)</source>
+        <target xml:space="preserve">Başka bir pilot için (çok oyunculu aracılığıyla) bir model yüklenemedi. Diğer pilot varsayılan model olarak görünecektir. (Bu hataları çok oyunculu ayarlar iletişim kutusundan devre dışı bırakabilirsiniz)</target>
+      </trans-unit>
+      <trans-unit id="sys/error-category-out-of-memory:0" approved="yes">
+        <source xml:space="preserve">Allocating memory failed. Some resources will not be loaded. Adjust your settings to reduce view distance or number of objects loaded.</source>
+        <target xml:space="preserve">Bellek ayırma başarısız oldu. Bazı kaynaklar yüklenmeyecek. Görüş mesafesini veya yüklenen nesne sayısını azaltmak için ayarlarınızı yapın.</target>
+      </trans-unit>
+      <trans-unit id="sys/error-category-scenario:0" approved="yes">
+        <source xml:space="preserve">The scenario &apos;%VALUE%&apos; contains errors, and may not work correctly.</source>
+        <target xml:space="preserve">&apos;%VALUE%&apos; senaryosu hatalar içeriyor ve düzgün çalışmayabilir.</target>
+      </trans-unit>
+      <trans-unit id="sys/error-category-shaders:0" approved="yes">
+        <source xml:space="preserve">Problems occurred loading visual effects (shaders). This can cause objects to be invisible or appear incorrect. It can sometimes be fixed by changing rendering settings inside FlightGear, or occasionally, by updating the drivers for your graphics card.</source>
+        <target xml:space="preserve">Görsel efektler (gölgelendiriciler) yüklenirken sorunlar oluştu. Bu, nesnelerin görünmez olmasına veya yanlış görünmesine neden olabilir. Bazen FlightGear içindeki işleme ayarlarını değiştirerek veya bazen grafik kartınızın sürücülerini güncelleyerek düzeltilebilir.</target>
+      </trans-unit>
+      <trans-unit id="sys/error-category-terrasync:0" approved="yes">
+        <source xml:space="preserve">Scenery downloaded via TerraSync is not loading correctly. The usually indicates a problem with your network connection or local disk.</source>
+        <target xml:space="preserve">TerraSync ile indirilen manzara düzgün yüklenmiyor. Genellikle ağ bağlantınızda veya yerel diskinizde bir sorun olduğunu gösterir.</target>
+      </trans-unit>
+      <trans-unit id="sys/error-category-traffic:0" approved="yes">
+        <source xml:space="preserve">Problems occured loading simulated aircaft traffic: some traffic may not appear.</source>
+        <target xml:space="preserve">Simüle edilmiş uçak trafiği yüklenirken sorunlar oluştu: bazı trafik görünmeyebilir.</target>
+      </trans-unit>
+      <trans-unit id="sys/error-category-unknown:0" approved="yes">
+        <source xml:space="preserve">Errors occurred in an unknown part of FlightGear. Please report this bug to the FlightGear development team.</source>
+        <target xml:space="preserve">FlightGear&apos;ın bilinmeyen bir bölümünde hatalar oluştu. Lütfen bu hatayı FlightGear geliştirme ekibine bildirin.</target>
+      </trans-unit>
+      <trans-unit id="sys/error-dialog-load:0" approved="yes">
+        <source xml:space="preserve">Errors loading user-interface</source>
+        <target xml:space="preserve">Kullanıcı arayüzü yüklenirken hatalar</target>
+      </trans-unit>
+      <trans-unit id="sys/error-input-device-config:0" approved="yes">
+        <source xml:space="preserve">Errors loading input device configuration</source>
+        <target xml:space="preserve">Giriş cihazı yapılandırması yüklenirken hatalar</target>
+      </trans-unit>
+      <trans-unit id="sys/error-loading-texture:0" approved="yes">
+        <source xml:space="preserve">Texture failed to load</source>
+        <target xml:space="preserve">Doku yüklenemedi</target>
+      </trans-unit>
+      <trans-unit id="sys/error-missing-shader:0" approved="yes">
+        <source xml:space="preserve">Shader / Effect problems</source>
+        <target xml:space="preserve">Gölgelendirici / Efekt sorunları</target>
+      </trans-unit>
+      <trans-unit id="sys/error-next-steps:0" approved="yes">
+        <source xml:space="preserve">This dialog is work-in-progress. The information included above may not be fully correct, so please check the detailed information below and give feedback if something seems wrong. Please include all the information below, as well as the message above.</source>
+        <target xml:space="preserve">Bu diyalog devam eden bir çalışmadır. Yukarıda verilen bilgiler tam olarak doğru olmayabilir, bu nedenle lütfen aşağıdaki ayrıntılı bilgileri kontrol edin ve bir şeyler yanlış görünüyorsa geri bildirimde bulunun. Lütfen aşağıdaki tüm bilgileri ve yukarıdaki mesajı ekleyin.</target>
+      </trans-unit>
+      <trans-unit id="sys/error-scenery-load:0" approved="yes">
+        <source xml:space="preserve">Errors loading scenery</source>
+        <target xml:space="preserve">Manzara yüklenirken hatalar</target>
+      </trans-unit>
+      <trans-unit id="sys/error-terraysnc:0" approved="yes">
+        <source xml:space="preserve">Errors downloading scenery from TerraSync</source>
+        <target xml:space="preserve">TerraSync&apos;ten sahne indirirken hatalar</target>
+      </trans-unit>
+      <trans-unit id="sys/error-type-bad-data:0" approved="yes">
+        <source xml:space="preserve">File or resource is invalid or corrupted</source>
+        <target xml:space="preserve">Dosya veya kaynak geçersiz veya bozuk</target>
+      </trans-unit>
+      <trans-unit id="sys/error-type-bad-header:0" approved="yes">
+        <source xml:space="preserve">File or resource header is incorrect</source>
+        <target xml:space="preserve">Dosya veya kaynak başlığı yanlış</target>
+      </trans-unit>
+      <trans-unit id="sys/error-type-io:0" approved="yes">
+        <source xml:space="preserve">Unable to read/write files correctly (check permissions and disk space)</source>
+        <target xml:space="preserve">Dosyalar doğru okunamıyor/yazamıyor (izinleri ve disk alanını kontrol edin)</target>
+      </trans-unit>
+      <trans-unit id="sys/error-type-misconfigured:0" approved="yes">
+        <source xml:space="preserve">The resource contains a configuration problem</source>
+        <target xml:space="preserve">Kaynak bir yapılandırma sorunu içeriyor</target>
+      </trans-unit>
+      <trans-unit id="sys/error-type-network:0" approved="yes">
+        <source xml:space="preserve">Network connection failure</source>
+        <target xml:space="preserve">Ağ bağlantısı hatası</target>
+      </trans-unit>
+      <trans-unit id="sys/error-type-not-found:0" approved="yes">
+        <source xml:space="preserve">The file or resource was not found</source>
+        <target xml:space="preserve">Dosya veya kaynak bulunamadı</target>
+      </trans-unit>
+      <trans-unit id="sys/error-type-out-of-memory:0" approved="yes">
+        <source xml:space="preserve">Unable to allocate sufficient memory</source>
+        <target xml:space="preserve">Yeterli bellek ayrılamadı</target>
+      </trans-unit>
+      <trans-unit id="sys/error-type-unknown:0" approved="yes">
+        <source xml:space="preserve">Unknown error</source>
+        <target xml:space="preserve">Bilinmeyen hata</target>
+      </trans-unit>
+      <trans-unit id="sys/error-xml-load-command:0" approved="yes">
+        <source xml:space="preserve">Scripted loading of XML failed</source>
+        <target xml:space="preserve">Komut dosyasıyla XML yüklemesi başarısız oldu</target>
+      </trans-unit>
+      <trans-unit id="sys/error-xml-model-load:0" approved="yes">
+        <source xml:space="preserve">Errors loading model XML</source>
+        <target xml:space="preserve">Model XML yüklenirken hatalar</target>
+      </trans-unit>
       <trans-unit id="sys/finalize-position:0" approved="yes">
         <source xml:space="preserve">finalizing position</source>
         <target xml:space="preserve">pozisyonu sonlandırma</target>
@@ -1378,6 +1762,10 @@
         <source xml:space="preserve">initializing subsystems</source>
         <target xml:space="preserve">alt sistemler başlatılıyor</target>
       </trans-unit>
+      <trans-unit id="sys/license-url:0" approved="yes">
+        <source xml:space="preserve">Licensed under the GNU GPL. See https://www.flightgear.org for more information.</source>
+        <target xml:space="preserve">GNU GPL altında lisanslanmıştır. Daha fazla bilgi için https://www.flightgear.org adresine bakın.</target>
+      </trans-unit>
       <trans-unit id="sys/loading-aircraft:0" approved="yes">
         <source xml:space="preserve">loading aircraft</source>
         <target xml:space="preserve">uçak yükleniyor</target>
@@ -1430,6 +1818,22 @@
         <source xml:space="preserve">Settings migrated</source>
         <target xml:space="preserve">Ayarlar taşındı</target>
       </trans-unit>
+      <trans-unit id="sys/units-kbytes:0" approved="yes">
+        <source xml:space="preserve">KB</source>
+        <target xml:space="preserve">KB</target>
+      </trans-unit>
+      <trans-unit id="sys/units-kbytes-per-sec:0" approved="yes">
+        <source xml:space="preserve">KB/s</source>
+        <target xml:space="preserve">KB/s</target>
+      </trans-unit>
+      <trans-unit id="sys/units-mbytes:0" approved="yes">
+        <source xml:space="preserve">MB</source>
+        <target xml:space="preserve">MB</target>
+      </trans-unit>
+      <trans-unit id="sys/units-mbytes-per-sec:0" approved="yes">
+        <source xml:space="preserve">MB/s</source>
+        <target xml:space="preserve">MB/s</target>
+      </trans-unit>
       <trans-unit id="sys/unstable-warning:0" approved="yes">
         <source xml:space="preserve">Unstable nightly build - some features may be under active development</source>
         <target xml:space="preserve">Kararsız gece yapısı - bazı özellikler aktif geliştirme aşamasında olabilir</target>
@@ -1441,8 +1845,8 @@
         <target xml:space="preserve">Etrafa bakmak için farenin sağ düğmesini basılı tutarken sürükleyin</target>
       </trans-unit>
       <trans-unit id="tips/tip:1" approved="yes">
-        <source xml:space="preserve">Hold [Shift] while looking around to move the view up, down, left or right</source>
-        <target xml:space="preserve">Görünümü yukarı, aşağı, sola veya sağa hareket ettirmek için etrafa bakarken [Shift] tuşunu basılı tutun</target>
+        <source xml:space="preserve">Hold Ctrl while looking around to move the view up, down, left or right</source>
+        <target xml:space="preserve">Görünümü yukarı, aşağı, sola veya sağa hareket ettirmek için etrafa bakarken Ctrl tuşunu basılı tutun</target>
       </trans-unit>
       <trans-unit id="tips/tip:2" approved="yes">
         <source xml:space="preserve">Press a/A to adjust the simulation speed</source>