Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mumble-voip/mumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Hacker <dd0t@users.sourceforge.net>2014-09-21 19:59:21 +0400
committerStefan Hacker <dd0t@users.sourceforge.net>2014-09-21 21:24:06 +0400
commit9f5b01b9ec87dfd8b51fdc39d52f61c618f6dd6d (patch)
treecbbdff1436af1710dcea23be294b59da62b07fd4 /installer
parentb4f0c66c879d3f67f910d2ccb7b60acd1c4ee58a (diff)
Make the Windows install create desktop shortcuts again.
Created sub-features for desktop shortcuts. Will require new translations. Fixes #1282
Diffstat (limited to 'installer')
-rw-r--r--installer/Files.wxs22
-rw-r--r--installer/Product.wxs14
-rw-r--r--installer/Settings.wxi2
-rw-r--r--installer/Translations/Czech.wxl4
-rw-r--r--installer/Translations/Danish.wxl2
-rw-r--r--installer/Translations/Dutch.wxl4
-rw-r--r--installer/Translations/English.wxl2
-rw-r--r--installer/Translations/French.wxl4
-rw-r--r--installer/Translations/German.wxl4
-rw-r--r--installer/Translations/Italian.wxl4
-rw-r--r--installer/Translations/Japanese.wxl4
-rw-r--r--installer/Translations/Norwegian.wxl4
-rw-r--r--installer/Translations/Polish.wxl4
-rw-r--r--installer/Translations/Portuguese.wxl4
-rw-r--r--installer/Translations/Russian.wxl4
-rw-r--r--installer/Translations/SimpChinese.wxl4
-rw-r--r--installer/Translations/Spanish.wxl4
-rw-r--r--installer/Translations/Swedish.wxl4
-rw-r--r--installer/Translations/TradChinese.wxl4
-rw-r--r--installer/Translations/Turkish.wxl4
20 files changed, 83 insertions, 19 deletions
diff --git a/installer/Files.wxs b/installer/Files.wxs
index c33305c5d..b1d888355 100644
--- a/installer/Files.wxs
+++ b/installer/Files.wxs
@@ -5,6 +5,16 @@
<!-- Mumble -->
<Fragment>
<DirectoryRef Id="INSTALLDIR">
+ <Component Id="MumbleDesktopShortcutComponent" Guid="$(var.MumbleDesktopShortcutGuid)" KeyPath="yes">
+ <Shortcut Id="MumbleDesktopShortcut"
+ Directory="DesktopFolder"
+ Name="Mumble"
+ WorkingDirectory="INSTALLDIR"
+ Target="[INSTALLDIR]mumble.exe">
+ <ShortcutProperty Key="System.AppUserModel.ID" Value="net.sourceforge.mumble.Mumble" />
+ </Shortcut>
+ </Component>
+
<Component Id="mumble.exe" Guid="$(var.MumbleExeGuid)">
<File Id="mumble.exe" Source="$(var.SourceDir)\release\mumble.exe" KeyPath="yes">
<Shortcut Id="MumbleShortcut" Directory="ApplicationProgramsFolder" Name="Mumble" WorkingDirectory="INSTALLDIR">
@@ -44,9 +54,19 @@
</Component>
<?endif ?>
+ <Component Id="MurmurDesktopShortcutComponent" Guid="$(var.MurmurDesktopShortcutGuid)" KeyPath="yes">
+ <Shortcut Id="MurmurDesktopShortcut"
+ Directory="DesktopFolder"
+ Name="Murmur"
+ WorkingDirectory="INSTALLDIR"
+ Target="[INSTALLDIR]murmur.exe"
+ Icon="murmur.ico"
+ IconIndex="0" />
+ </Component>
+
<Component Id="murmur.exe">
<File Id="murmur.exe" Source="$(var.SourceDir)\release\murmur.exe" KeyPath="yes">
- <Shortcut Id="MurmurShortcut" Directory="ApplicationProgramsFolder" Name="Murmur" WorkingDirectory="INSTALLDIR" Icon="murmur.ico" IconIndex="0" Advertise="yes" />
+ <Shortcut Id="MurmurShortcut" Directory="ApplicationProgramsFolder" Name="Murmur" WorkingDirectory="INSTALLDIR" Icon="murmur.ico" IconIndex="0" />
</File>
</Component>
<Component Id="murmur.ini" NeverOverwrite="yes">
diff --git a/installer/Product.wxs b/installer/Product.wxs
index fb6672aa4..d0b7b4d0c 100644
--- a/installer/Product.wxs
+++ b/installer/Product.wxs
@@ -129,7 +129,7 @@
<?endif ?>
</ComponentGroup>
- <Feature Id="Mumble" Title="!(loc.MUMBLE_SEC_MUMBLE)" Description="!(loc.DESC_SectionMumble)" Level="1" AllowAdvertise="no" ConfigurableDirectory="INSTALLDIR">
+ <Feature Id="Mumble" Title="!(loc.MUMBLE_SEC_MUMBLE)" Description="!(loc.DESC_SectionMumble)" Level="1" AllowAdvertise="no" ConfigurableDirectory="INSTALLDIR" Display="expand">
<?ifndef StaticBuild ?>
<?ifdef SndFileDir ?>
<ComponentRef Id="libsndfile1.dll" />
@@ -159,10 +159,13 @@
<?ifdef G15 ?>
<ComponentRef Id="mumble_g15_helper.exe" />
<?endif ?>
-
+
+ <Feature Id="MumbleDesktopShortcutFeature" Title="!(loc.MUMBLE_SEC_DesktopShortcut)" Description="!(loc.DESC_DesktopShortcut)" InstallDefault="followParent" AllowAdvertise="no">
+ <ComponentRef Id="MumbleDesktopShortcutComponent" />
+ </Feature>
</Feature>
- <Feature Id="Murmur" Title="!(loc.MUMBLE_SEC_MURMUR)" Description="!(loc.DESC_SectionMurmur)" Level="1000" ConfigurableDirectory="INSTALLDIR">
+ <Feature Id="Murmur" Title="!(loc.MUMBLE_SEC_MURMUR)" Description="!(loc.DESC_SectionMurmur)" Level="1000" ConfigurableDirectory="INSTALLDIR" Display="expand">
<?ifndef StaticBuild ?>
<?ifdef IceDir ?>
<ComponentRef Id="bzip2.dll" />
@@ -177,6 +180,11 @@
<ComponentRef Id="murmur.exe" />
<ComponentRef Id="murmur.ini" />
<ComponentRef Id="Murmur.ice" />
+
+ <Feature Id="MurmurDesktopShortcutFeature" Title="!(loc.MUMBLE_SEC_DesktopShortcut)" Description="!(loc.DESC_DesktopShortcut)" InstallDefault="followParent" AllowAdvertise="no">
+ <ComponentRef Id="MurmurDesktopShortcutComponent" />
+ </Feature>
+
</Feature>
<Feature Id="Libraries" Title="Required Libraries" Display="hidden" AllowAdvertise="no" Absent="disallow" Level="1">
diff --git a/installer/Settings.wxi b/installer/Settings.wxi
index 2669044e4..6fe94dd70 100644
--- a/installer/Settings.wxi
+++ b/installer/Settings.wxi
@@ -15,6 +15,8 @@
<?endif?>
<?define MumbleExeGuid = A08F7909-1116-4AC8-9422-051FA1A1BE19 ?>
+ <?define MumbleDesktopShortcutGuid = 4448BE21-1AA1-41B8-887E-B3E07B28EFAE ?>
+ <?define MurmurDesktopShortcutGuid = 02936CED-6588-4B7E-880F-241A4CF5E7D3 ?>
<?define LicenseTextGuid = 87C7967B-5E4B-41DD-83F5-A9E9E8AD3B39 ?>
<?define ReadMeTextGuid = 15878902-B819-4E77-8C1D-0A915D79660B ?>
<?define ApplicationProgramsFolderRemovalComponentGuid = 0AE1745D-FF86-4D61-BAF3-44248D21D263 ?>
diff --git a/installer/Translations/Czech.wxl b/installer/Translations/Czech.wxl
index 1fcab796d..945a95f55 100644
--- a/installer/Translations/Czech.wxl
+++ b/installer/Translations/Czech.wxl
@@ -32,7 +32,9 @@
<String Id="DESC_SectionMumble11X">Mumble klient k připojení na starší servery.</String>
<String Id="DESC_SectionMurmur">Server pro Mumble. Obsahuje všechno co je třeba k rozběhnutí vlastního serveru.</String>
<String Id="DESC_SectionBonjour">Bonjour zapne ohlášení a zpřístupění Murmur serverů na vaší LAN. Toto stáhne a spustí Bonjour instalátor.</String>
-
+ <String Id="MUMBLE_SEC_DesktopShortcut">Desktop shortcut</String>
+ <String Id="DESC_DesktopShortcut">Creates a shortcut on the desktop</String>
+
<!-- Uninstall sections -->
<String Id="MUMBLE_UNSEC_BASE">Mumble a Murmur</String>
<String Id="MUMBLE_UNSEC_ALL">Nastavení a Databáze</String>
diff --git a/installer/Translations/Danish.wxl b/installer/Translations/Danish.wxl
index 10b83fdbc..d470ae539 100644
--- a/installer/Translations/Danish.wxl
+++ b/installer/Translations/Danish.wxl
@@ -31,6 +31,8 @@
<String Id="DESC_SectionMumble11X">Mumble-klienten til at oprette forbindelse til ældre servere.</String>
<String Id="DESC_SectionMurmur">Serveren for Mumble. Inkluderer alt hvad der er nødvendigt for at køre din egen server.</String>
<String Id="DESC_SectionBonjour">Bonjour annoncerer og opdager Murmur-servere på dit LAN-netværk. Dette vil downloade og køre Bonjour-installationsprogrammet.</String>
+ <String Id="MUMBLE_SEC_DesktopShortcut">Desktop shortcut</String>
+ <String Id="DESC_DesktopShortcut">Creates a shortcut on the desktop</String>
<!-- Uninstall sections -->
<String Id="MUMBLE_UNSEC_BASE">Mumble og Murmur</String>
diff --git a/installer/Translations/Dutch.wxl b/installer/Translations/Dutch.wxl
index 3d71829c7..18bf9397a 100644
--- a/installer/Translations/Dutch.wxl
+++ b/installer/Translations/Dutch.wxl
@@ -32,7 +32,9 @@
<String Id="DESC_SectionMumble11X">De Mumble client om verbinding te maken met oudere (versie)servers.</String>
<String Id="DESC_SectionMurmur">De server voor Mumble. Bevat alles om je eigen server te maken.</String>
<String Id="DESC_SectionBonjour">Bonjour ontdekt en geeft aan of er Murmur servers op uw netwerk aanwezig zijn. Dit downloadt en installeert de Bonjour installatie.</String>
-
+ <String Id="MUMBLE_SEC_DesktopShortcut">Desktop shortcut</String>
+ <String Id="DESC_DesktopShortcut">Creates a shortcut on the desktop</String>
+
<!-- Uninstall sections -->
<String Id="MUMBLE_UNSEC_BASE">Mumble en Murmur</String>
<String Id="MUMBLE_UNSEC_ALL">Voorkeuren en databases</String>
diff --git a/installer/Translations/English.wxl b/installer/Translations/English.wxl
index 1762d2a6e..57ffe1801 100644
--- a/installer/Translations/English.wxl
+++ b/installer/Translations/English.wxl
@@ -32,6 +32,8 @@
<String Id="DESC_SectionMumble11X">The Mumble client for connecting to older servers.</String>
<String Id="DESC_SectionMurmur">The server for Mumble. Includes everything needed to run your own server.</String>
<String Id="DESC_SectionBonjour">Bonjour enables announcement and discovery of Murmur servers on your LAN. This will download and run the Bonjour installer.</String>
+ <String Id="MUMBLE_SEC_DesktopShortcut">Desktop shortcut</String>
+ <String Id="DESC_DesktopShortcut">Creates a shortcut on the desktop</String>
<!-- Uninstall sections -->
<String Id="MUMBLE_UNSEC_BASE">Mumble and Murmur</String>
diff --git a/installer/Translations/French.wxl b/installer/Translations/French.wxl
index d57f1f4d2..d7146ce28 100644
--- a/installer/Translations/French.wxl
+++ b/installer/Translations/French.wxl
@@ -32,7 +32,9 @@
<String Id="DESC_SectionMumble11X">Client Mumble pour se connecter aux anciens serveurs</String>
<String Id="DESC_SectionMurmur">Le serveur pour Mumble. Inclut tout ce dont vous avez besoin pour installer votre propre serveur.</String>
<String Id="DESC_SectionBonjour">Bonjour permet d'annoncer et de découvrir les serveurs Murmur sur votre réseau local. Télécharge et lance le programme d'installation de Bonjour.</String>
-
+ <String Id="MUMBLE_SEC_DesktopShortcut">Desktop shortcut</String>
+ <String Id="DESC_DesktopShortcut">Creates a shortcut on the desktop</String>
+
<!-- Uninstall sections -->
<String Id="MUMBLE_UNSEC_BASE">Mumble et Murmur</String>
<String Id="MUMBLE_UNSEC_ALL">Préférences et Bases de données</String>
diff --git a/installer/Translations/German.wxl b/installer/Translations/German.wxl
index b96dcb4c5..f814529ea 100644
--- a/installer/Translations/German.wxl
+++ b/installer/Translations/German.wxl
@@ -31,7 +31,9 @@
<String Id="DESC_SectionMumble11X">Der Mumble Client, welchen Sie zum Verbinden mit einem älteren Server benötigen.</String>
<String Id="DESC_SectionMurmur">Der Server für Mumble. Beinhaltet alles, was Sie zum Starten ihres eigenen Servers benötigen.</String>
<String Id="DESC_SectionBonjour">Bonjour ermöglicht das Bekanntmachen und Finden von Murmur Servern im LAN. Diese Option lädt Bonjour herunter und startet die Installationsroutine.</String>
-
+ <String Id="MUMBLE_SEC_DesktopShortcut">Desktop shortcut</String>
+ <String Id="DESC_DesktopShortcut">Erzeugt einen shortcut auf dem Desktop</String>
+
<!-- Uninstall sections -->
<String Id="MUMBLE_UNSEC_BASE">Mumble und Murmur</String>
<String Id="MUMBLE_UNSEC_ALL">Einstellungen und Datenbanken</String>
diff --git a/installer/Translations/Italian.wxl b/installer/Translations/Italian.wxl
index e588c3ca3..665095c51 100644
--- a/installer/Translations/Italian.wxl
+++ b/installer/Translations/Italian.wxl
@@ -32,7 +32,9 @@
<String Id="DESC_SectionMumble11X">Client di Mumble, quello di cui hai bisogno per connetterti ai server vecchi</String>
<String Id="DESC_SectionMurmur">Il server per Mumble. Include tutto ciò di cui hai bisogno per eseguire il tuo server</String>
<String Id="DESC_SectionBonjour">Bonjour abilita la possibilità di trovare un server Murmur all'interno della tua rete LAN. Questa funzione scaricherà e installerà Bonjour</String>
-
+ <String Id="MUMBLE_SEC_DesktopShortcut">Desktop shortcut</String>
+ <String Id="DESC_DesktopShortcut">Creates a shortcut on the desktop</String>
+
<!-- Uninstall sections -->
<String Id="MUMBLE_UNSEC_BASE">Mumble e Murmur</String>
<String Id="MUMBLE_UNSEC_ALL">Preferenze e Dati</String>
diff --git a/installer/Translations/Japanese.wxl b/installer/Translations/Japanese.wxl
index c476de160..d452dbd0b 100644
--- a/installer/Translations/Japanese.wxl
+++ b/installer/Translations/Japanese.wxl
@@ -32,7 +32,9 @@
<String Id="DESC_SectionMumble11X">古いサーバに接続するための Mumble クライアントです。</String>
<String Id="DESC_SectionMurmur">Mumbe のためのサーバ。サーバを実行するために必要なファイルを含みます。</String>
<String Id="DESC_SectionBonjour">Bonjour を使用すると LAN 上の Murmur サーバの通知と探索が可能です。これを選択すると Bonjour のインストーラがダウンロードされ実行されます。</String>
-
+ <String Id="MUMBLE_SEC_DesktopShortcut">Desktop shortcut</String>
+ <String Id="DESC_DesktopShortcut">Creates a shortcut on the desktop</String>
+
<!-- Uninstall sections -->
<String Id="MUMBLE_UNSEC_BASE">Mumble と Murmur</String>
<String Id="MUMBLE_UNSEC_ALL">設定 と データベース</String>
diff --git a/installer/Translations/Norwegian.wxl b/installer/Translations/Norwegian.wxl
index e12fa8bd8..b815f9162 100644
--- a/installer/Translations/Norwegian.wxl
+++ b/installer/Translations/Norwegian.wxl
@@ -31,7 +31,9 @@
<String Id="DESC_SectionMumble11X">Bakoverkompatibel klient for bruk mot eldre servere.</String>
<String Id="DESC_SectionMurmur">Serveren for Mumble. Inkluderer alt som trengs for å kjøre din egen server.</String>
<String Id="DESC_SectionBonjour">Bonjour annonserer og oppdater Murmur servere på ditt lokale nettverk. Dette vil laste ned og installere Bonjour.</String>
-
+ <String Id="MUMBLE_SEC_DesktopShortcut">Desktop shortcut</String>
+ <String Id="DESC_DesktopShortcut">Creates a shortcut on the desktop</String>
+
<!-- Uninstall sections -->
<String Id="MUMBLE_UNSEC_BASE">Mumble og Murmur</String>
<String Id="MUMBLE_UNSEC_ALL">Brukerinstillinger og databaser</String>
diff --git a/installer/Translations/Polish.wxl b/installer/Translations/Polish.wxl
index 7d04083b1..251adc5a2 100644
--- a/installer/Translations/Polish.wxl
+++ b/installer/Translations/Polish.wxl
@@ -33,7 +33,9 @@
<String Id="DESC_SectionMumble11X">Klient Mumble, pozwalający na połączenia do starszych serwerów.</String>
<String Id="DESC_SectionMurmur">Serwer Mumble. Zawiera wszystko czego potrzebujesz by uruchomić swój własny serwer.</String>
<String Id="DESC_SectionBonjour">Bonjour pozwala na automatyczne rozgłaszanie i wykrywanie serwerów Murmur w sieci LAN. Zaznaczając tę opcję instalator Bonjour zostanie pobrany i uruchomiony.</String>
-
+ <String Id="MUMBLE_SEC_DesktopShortcut">Desktop shortcut</String>
+ <String Id="DESC_DesktopShortcut">Creates a shortcut on the desktop</String>
+
<!-- Uninstall sections -->
<String Id="MUMBLE_UNSEC_BASE">Mumble i Murmur</String>
<String Id="MUMBLE_UNSEC_ALL">Preferencje i bazy danych</String>
diff --git a/installer/Translations/Portuguese.wxl b/installer/Translations/Portuguese.wxl
index f1a479bf3..5341d1c41 100644
--- a/installer/Translations/Portuguese.wxl
+++ b/installer/Translations/Portuguese.wxl
@@ -31,7 +31,9 @@
<String Id="DESC_SectionMumble11X">O cliente do Mumble para conectar a servidores antigos.</String>
<String Id="DESC_SectionMurmur">O servidor para o Mumble. Inclui todo o necessário para rodar seu próprio servidor.</String>
<String Id="DESC_SectionBonjour">Bonjour permite anúncio e descobrimento de servidores Murmur na sua LAN. Isso baixará e executará o instalador do Bonjour.</String>
-
+ <String Id="MUMBLE_SEC_DesktopShortcut">Desktop shortcut</String>
+ <String Id="DESC_DesktopShortcut">Creates a shortcut on the desktop</String>
+
<!-- Uninstall sections -->
<String Id="MUMBLE_UNSEC_BASE">Mumble e Murmur</String>
<String Id="MUMBLE_UNSEC_ALL">Preferências e Base de Dados</String>
diff --git a/installer/Translations/Russian.wxl b/installer/Translations/Russian.wxl
index 020920d78..c933ca5ab 100644
--- a/installer/Translations/Russian.wxl
+++ b/installer/Translations/Russian.wxl
@@ -31,7 +31,9 @@
<String Id="DESC_SectionMumble11X">Mumble клиент для подключения к старым серверам.</String>
<String Id="DESC_SectionMurmur">Сервер для Mumble. Включает в себя все необходимое для запуска своего собственного сервера.</String>
<String Id="DESC_SectionBonjour">Bonjour позволяет анонсировать и находить сервера Murmur в Вашей локальной сети. Это позволит загрузить и запустить программу установки Bonjour.</String>
-
+ <String Id="MUMBLE_SEC_DesktopShortcut">Desktop shortcut</String>
+ <String Id="DESC_DesktopShortcut">Creates a shortcut on the desktop</String>
+
<!-- Uninstall sections -->
<String Id="MUMBLE_UNSEC_BASE">Mumble и Murmur</String>
<String Id="MUMBLE_UNSEC_ALL">Настройки и Базы данных</String>
diff --git a/installer/Translations/SimpChinese.wxl b/installer/Translations/SimpChinese.wxl
index c112db0b3..419cd7b98 100644
--- a/installer/Translations/SimpChinese.wxl
+++ b/installer/Translations/SimpChinese.wxl
@@ -31,7 +31,9 @@
<String Id="DESC_SectionMumble11X">该 Mumble 客户端用于连接到一个老的服务器。</String>
<String Id="DESC_SectionMurmur">Mumble 服务器端包含所有您运行个人服务器所必须的文件。</String>
<String Id="DESC_SectionBonjour">Bonjour enables announcement and discovery of Murmur servers on your LAN. This will download and run the Bonjour installer.</String>
-
+ <String Id="MUMBLE_SEC_DesktopShortcut">Desktop shortcut</String>
+ <String Id="DESC_DesktopShortcut">Creates a shortcut on the desktop</String>
+
<!-- Uninstall sections -->
<String Id="MUMBLE_UNSEC_BASE">Mumble 和 Murmur</String>
<String Id="MUMBLE_UNSEC_ALL">个人偏好和数据库</String>
diff --git a/installer/Translations/Spanish.wxl b/installer/Translations/Spanish.wxl
index f818af8b2..87fb2e0c0 100644
--- a/installer/Translations/Spanish.wxl
+++ b/installer/Translations/Spanish.wxl
@@ -31,7 +31,9 @@
<String Id="DESC_SectionMumble11X">El cliente Mumble para conectar a servidores antiguos.</String>
<String Id="DESC_SectionMurmur">El servidor para Mumble. Incluye todo lo necesario para ejecutar su propio servidor.</String>
<String Id="DESC_SectionBonjour">Bonjour posibilita el anuncio y descubrimiento de servidores Murmur en su LAN. Ésto descargará y ejecutará el instalador Bonjour.</String>
-
+ <String Id="MUMBLE_SEC_DesktopShortcut">Desktop shortcut</String>
+ <String Id="DESC_DesktopShortcut">Creates a shortcut on the desktop</String>
+
<!-- Uninstall sections -->
<String Id="MUMBLE_UNSEC_BASE">Mumble y Murmur</String>
<String Id="MUMBLE_UNSEC_ALL">Preferencias y bases de datos</String>
diff --git a/installer/Translations/Swedish.wxl b/installer/Translations/Swedish.wxl
index 28aa1cfef..e94737ef1 100644
--- a/installer/Translations/Swedish.wxl
+++ b/installer/Translations/Swedish.wxl
@@ -31,7 +31,9 @@
<String Id="DESC_SectionMumble11X">Klienten för Mumble att ansluta till äldre servrar.</String>
<String Id="DESC_SectionMurmur">Servern för Mumble. Inkluderar allt du behöver för att köra din egen server.</String>
<String Id="DESC_SectionBonjour">Bonjour tillåter annonsering och upptäckning av Murmur servrar på ditt LAN. Detta kommer att ladda ner och köra installationen för Bonjour.</String>
-
+ <String Id="MUMBLE_SEC_DesktopShortcut">Desktop shortcut</String>
+ <String Id="DESC_DesktopShortcut">Creates a shortcut on the desktop</String>
+
<!-- Uninstall sections -->
<String Id="MUMBLE_UNSEC_BASE">Mumble och Murmur</String>
<String Id="MUMBLE_UNSEC_ALL">Inställningar och databaser</String>
diff --git a/installer/Translations/TradChinese.wxl b/installer/Translations/TradChinese.wxl
index fc7b9547a..fcd1c0809 100644
--- a/installer/Translations/TradChinese.wxl
+++ b/installer/Translations/TradChinese.wxl
@@ -31,7 +31,9 @@
<String Id="DESC_SectionMumble11X">該 Mumble 客戶端用于連接到一個老的服務器。</String>
<String Id="DESC_SectionMurmur">Mumble 服務器端包含所有您運行個人服務器所必須的文件。</String>
<String Id="DESC_SectionBonjour">Bonjour enables announcement and discovery of Murmur servers on your LAN. This will download and run the Bonjour installer.</String>
-
+ <String Id="MUMBLE_SEC_DesktopShortcut">Desktop shortcut</String>
+ <String Id="DESC_DesktopShortcut">Creates a shortcut on the desktop</String>
+
<!-- Uninstall sections -->
<String Id="MUMBLE_UNSEC_BASE">Mumble 和 Murmur</String>
<String Id="MUMBLE_UNSEC_ALL">個人偏好和數據庫</String>
diff --git a/installer/Translations/Turkish.wxl b/installer/Translations/Turkish.wxl
index 1f260f5b1..e92d364b7 100644
--- a/installer/Translations/Turkish.wxl
+++ b/installer/Translations/Turkish.wxl
@@ -32,7 +32,9 @@
<String Id="DESC_SectionMumble11X">Eski sunuculara bağlanmak için Mumble istemcisi.</String>
<String Id="DESC_SectionMurmur">Mumble için sunucu. Kendi sunucunuzu işletmeniz için gereken her şeyi içerir.</String>
<String Id="DESC_SectionBonjour">Bonjour yerel ağınızda Murmur sunucularının duyurulmalarına ve keşiflerine imkân sağlar. Bu seçenek Bonjour kurucusunu indirir ve çalıştırır.</String>
-
+ <String Id="MUMBLE_SEC_DesktopShortcut">Desktop shortcut</String>
+ <String Id="DESC_DesktopShortcut">Creates a shortcut on the desktop</String>
+
<!-- Uninstall sections -->
<String Id="MUMBLE_UNSEC_BASE">Mumble ve Murmur</String>
<String Id="MUMBLE_UNSEC_ALL">Tercihler ve Veritabanları</String>