summaryrefslogtreecommitdiffstats
path: root/src/tdebluez-common
diff options
context:
space:
mode:
authorSlávek Banko <[email protected]>2023-03-09 05:33:19 +0100
committerSlávek Banko <[email protected]>2023-03-09 05:52:54 +0100
commit66c9d2a5920b30474b595603a79915d2be38cdbe (patch)
treec896bdcef6cba137863cebb6106c62a9fd01c6ca /src/tdebluez-common
parent0c8df48682481faa5249ab010e09d67af08e6457 (diff)
downloadtdebluez-66c9d2a5920b30474b595603a79915d2be38cdbe.tar.gz
tdebluez-66c9d2a5920b30474b595603a79915d2be38cdbe.zip
Added CMakeL10n rules.
Added template for translations. Added translation of .desktop files. Signed-off-by: Slávek Banko <[email protected]>
Diffstat (limited to 'src/tdebluez-common')
-rw-r--r--src/tdebluez-common/CMakeLists.txt62
-rw-r--r--src/tdebluez-common/mimetypes/CMakeLists.txt8
-rw-r--r--src/tdebluez-common/mimetypes/av-device-class.desktop30
-rw-r--r--src/tdebluez-common/mimetypes/computer-device-class.desktop29
-rw-r--r--src/tdebluez-common/mimetypes/dun-profile.desktop28
-rw-r--r--src/tdebluez-common/mimetypes/fax-profile.desktop29
-rw-r--r--src/tdebluez-common/mimetypes/handsfree-profile.desktop27
-rw-r--r--src/tdebluez-common/mimetypes/headset-profile.desktop28
-rw-r--r--src/tdebluez-common/mimetypes/health-device-class.desktop6
-rw-r--r--src/tdebluez-common/mimetypes/imaging-device-class.desktop28
-rw-r--r--src/tdebluez-common/mimetypes/keyboard-device-class.desktop27
-rw-r--r--src/tdebluez-common/mimetypes/lan-device-class.desktop28
-rw-r--r--src/tdebluez-common/mimetypes/misc-device-class.desktop27
-rw-r--r--src/tdebluez-common/mimetypes/mouse-device-class.desktop27
-rw-r--r--src/tdebluez-common/mimetypes/obex-ftp-profile.desktop27
-rw-r--r--src/tdebluez-common/mimetypes/obex-objectpush-profile.desktop27
-rw-r--r--src/tdebluez-common/mimetypes/peripheral-device-class.desktop27
-rw-r--r--src/tdebluez-common/mimetypes/phone-device-class.desktop29
-rw-r--r--src/tdebluez-common/mimetypes/serial-port-profile.desktop27
-rw-r--r--src/tdebluez-common/mimetypes/synchronization-profile.desktop29
-rw-r--r--src/tdebluez-common/mimetypes/toy-device-class.desktop6
-rw-r--r--src/tdebluez-common/mimetypes/unknown-device-class.desktop28
-rw-r--r--src/tdebluez-common/mimetypes/unknown-profile.desktop30
-rw-r--r--src/tdebluez-common/mimetypes/wearable-device-class.desktop6
-rw-r--r--src/tdebluez-common/tde-settings-network-bluetooth.directory4
25 files changed, 61 insertions, 563 deletions
diff --git a/src/tdebluez-common/CMakeLists.txt b/src/tdebluez-common/CMakeLists.txt
index 8dbf649..ac577e9 100644
--- a/src/tdebluez-common/CMakeLists.txt
+++ b/src/tdebluez-common/CMakeLists.txt
@@ -9,59 +9,23 @@
#
#################################################
-project( tdebluez-common )
-# include( ConfigureChecks.cmake )
-
-# import required
-#tde_import( lib... )
-
-include_directories(
- ${CMAKE_CURRENT_BINARY_DIR}
- ${CMAKE_BINARY_DIR}
- ${CMAKE_SOURCE_DIR}
- ${CMAKE_SOURCE_DIR}/tdebluez-common
- ${TDE_INCLUDE_DIR}
- ${TQT_INCLUDE_DIRS}
-)
-
-#link_directories(
-# ${TQT_LIBRARY_DIRS}
-#)
+add_subdirectory( icons )
+add_subdirectory( mimetypes )
+#add_subdirectory( dunhandler )
+#add_subdirectory( faxhandler )
##### other data ################################
-# Example
-#install( FILES knotes.desktop DESTINATION ${XDG_APPS_INSTALL_DIR} )
-#install( FILES knoteconfig.kcfg knotesglobalconfig.kcfg DESTINATION ${KCFG_INSTALL_DIR} )
-#install( FILES knotesappui.rc knotesui.rc DESTINATION ${DATA_INSTALL_DIR}/knotes )
-#install( FILES local.desktop DESTINATION ${SERVICES_INSTALL_DIR}/tderesources/knotes )
-#install( FILES knotes_manager.desktop DESTINATION ${SERVICES_INSTALL_DIR}/tderesources )
-
-# # from tdebase/applnk/Makefile.am
-# install-data-local:
-# $(mkinstalldirs) $(DESTDIR)$(kde_appsdir)/Settings/Network/Bluetooth
-# $(INSTALL_DATA) $(srcdir)/kde-settings-network-bluetooth.directory \
-# $(DESTDIR)$(kde_appsdir)/Settings/Network/Bluetooth/.directory
-#
-# uninstall-local:
-# -rm -f $(DESTDIR)$(kde_appsdir)/Settings/Network/Bluetooth/.directory
-
-##### install import cmake modules ###############
-#tde_install_export( )
# Bluetooth directory entry in the control center
-install( FILES tde-settings-network-bluetooth.directory
- DESTINATION ${DATA_INSTALL_DIR}/tdebluez )
-
-# Bluetooth access to system debus org.bluez
-install( FILES org.trinitydesktop.tdebluez.conf
- DESTINATION ${DBUS_SYS_DIR} )
-# DESTINATION ${DBUS_SYSTEM_CONF_DIRECTORY} )
-
-
+tde_create_translated_desktop(
+ SOURCE tde-settings-network-bluetooth.directory
+ DESTINATION ${DATA_INSTALL_DIR}/tdebluez
+)
-add_subdirectory( icons )
-add_subdirectory( mimetypes )
-#add_subdirectory( dunhandler )
-#add_subdirectory( faxhandler ) \ No newline at end of file
+# Bluetooth access to system debus org.bluez
+install(
+ FILES org.trinitydesktop.tdebluez.conf
+ DESTINATION ${DBUS_SYS_DIR}
+)
diff --git a/src/tdebluez-common/mimetypes/CMakeLists.txt b/src/tdebluez-common/mimetypes/CMakeLists.txt
index 9e912b8..01de91f 100644
--- a/src/tdebluez-common/mimetypes/CMakeLists.txt
+++ b/src/tdebluez-common/mimetypes/CMakeLists.txt
@@ -9,9 +9,8 @@
#
#################################################
-#shellmimedir = $(kde_mimedir)/bluetooth
-#/opt/trinity/share/mimelnk
-install( FILES
+tde_create_translated_desktop(
+ SOURCE
av-device-class.desktop
computer-device-class.desktop
imaging-device-class.desktop
@@ -34,4 +33,5 @@ install( FILES
serial-port-profile.desktop
synchronization-profile.desktop
unknown-profile.desktop
- DESTINATION ${MIME_INSTALL_DIR}/bluetooth )
+ DESTINATION ${MIME_INSTALL_DIR}/bluetooth
+)
diff --git a/src/tdebluez-common/mimetypes/av-device-class.desktop b/src/tdebluez-common/mimetypes/av-device-class.desktop
index befe686..15eed78 100644
--- a/src/tdebluez-common/mimetypes/av-device-class.desktop
+++ b/src/tdebluez-common/mimetypes/av-device-class.desktop
@@ -1,32 +1,6 @@
[Desktop Entry]
-Encoding=UTF-8
+Comment=Audio/Video Bluetooth Device
+
Type=MimeType
MimeType=bluetooth/av-device-class
Icon=audio-x-generic
-Comment=Audio/Video Bluetooth Device
-Comment[ar]=جهاز صوتي/مرئي Bluetooth
-Comment[bg]=Аудио/видео Bluetooth устройство
-Comment[bs]=Audio/video Bluetooth uređaj
-Comment[ca]=Dispositiu Bluetooth àudio/vídeo
-Comment[da]=Audio/Video Bluetooth-enhed
-Comment[de]=Audio/Video Bluetooth-Gerät
-Comment[el]=Συσκευή ήχου/βίντεο Bluetooth
-Comment[es]=Dispositivo Bluetooth audio/vídeo
-Comment[et]=Audio/video Bluetoothi seade
-Comment[fr]=Périphérique Audio/Vidéo Bluetooth
-Comment[gl]=Dispositivo Bluetooth Áudio/Vídeo
-Comment[it]=Dispositivo Bluetooth Audio/Video
-Comment[ja]=オーディオ/ビデオ Bluetooth デバイス
-Comment[lt]=Audio/video Bluetooth įrenginys
-Comment[nl]=Bluetooth Audio/Video-apparaat
-Comment[pa]=ਆਡੀਓ/ਵੀਡਿਓ ਬਲਿਊਟੁੱਥ ਜੰਤਰ
-Comment[pl]=Urządzenie Bluetooth Audio/Wideo
-Comment[pt]=Dispositivo Bluetooth Áudio/Vídeo
-Comment[pt_BR]=Dispositivo Bluetooth Áudio/Vídeo
-Comment[sr]=Аудио-видео bluetooth уређај
-Comment[sr@Latn]=Audio-video bluetooth uređaj
-Comment[sv]=Blåtandsenhet med ljud eller video
-Comment[ta]=அடியோ/விடியோ புலுடுத் கருவி
-Comment[tg]=Дастгоҳи аудио/видео Bluetoot
-Comment[tr]=Bluetooth Ses/Görüntü Aygıtı
-Comment[xx]=xxAudio/Video Bluetooth Devicexx
diff --git a/src/tdebluez-common/mimetypes/computer-device-class.desktop b/src/tdebluez-common/mimetypes/computer-device-class.desktop
index c20ff0f..f7e7c63 100644
--- a/src/tdebluez-common/mimetypes/computer-device-class.desktop
+++ b/src/tdebluez-common/mimetypes/computer-device-class.desktop
@@ -1,32 +1,7 @@
[Desktop Entry]
-Encoding=UTF-8
+Comment=Computer/PDA Bluetooth Device
+
Type=MimeType
MimeType=bluetooth/computer-device-class
Icon=konsole
X-TDE-IsAlso=inode/directory
-Comment=Computer/PDA Bluetooth Device
-Comment[bg]=Компютърно/PDA Bluetooth устройство
-Comment[bs]=Računar/PDA Bluetooth uređaj
-Comment[ca]=Dispositiu Bluetooth ordinador/PDA
-Comment[da]=Computer/PDA Bluetooth-enhed
-Comment[de]=Computer/PDA Bluetooth-Gerät
-Comment[el]=Συσκευή υπολογιστή/PDA Bluetooth
-Comment[es]=Dispositivo Bluetooth computadora/PDA
-Comment[et]=Arvuti/PDA Bluetoothi seade
-Comment[fr]=Périphérique ordinateur ou PDA Bluetooth
-Comment[gl]=Dispositivo Bluetooth Computador/PDA
-Comment[it]=Dispositivo Bluetooth Computer/PDA
-Comment[ja]=コンピュータ/PDA Bluetooth デバイス
-Comment[lt]=Kompiuterio/PDA Bluetooth įrenginys
-Comment[nl]=Bluetooth computer/PDA-apparaat
-Comment[pa]=ਕੰਪਿਊਟਰ/PDA ਬਲਿਊਟੁੱਥ ਜੰਤਰ
-Comment[pl]=Urządzenie Bluetooth komputer/PDA
-Comment[pt]=Dispositivo Bluetooth Computador/PDA
-Comment[pt_BR]=Dispositivo Bluetooth Computador/PDA
-Comment[sr]=Рачунар/PDA bluetooth уређај
-Comment[sr@Latn]=Računar/PDA bluetooth uređaj
-Comment[sv]=Blåtandsenhet i dator eller handdator
-Comment[ta]=கணிணி/PDA புலுடுத் கருவி
-Comment[tg]=Дастгоҳи компютер/PDA Bluetooth
-Comment[tr]=Bluetooth Bilgisayar/PDA Aygıtı
-Comment[xx]=xxComputer/PDA Bluetooth Devicexx
diff --git a/src/tdebluez-common/mimetypes/dun-profile.desktop b/src/tdebluez-common/mimetypes/dun-profile.desktop
index dd0d5de..00468b2 100644
--- a/src/tdebluez-common/mimetypes/dun-profile.desktop
+++ b/src/tdebluez-common/mimetypes/dun-profile.desktop
@@ -1,30 +1,6 @@
[Desktop Entry]
-Encoding=UTF-8
+Comment=Bluetooth Dial-Up Networking Profile
+
Type=MimeType
MimeType=bluetooth/dun-profile
Icon=network_local
-Comment=Bluetooth Dial-Up Networking Profile
-Comment[bg]=Профил за връзка с Bluetooth (Dial-Up)
-Comment[bs]=Bluetooth dial-up networking profil
-Comment[ca]=Perfil de xarxa telefònica Bluetooth
-Comment[da]=Bluetooth opkalds-netværkprofil
-Comment[de]=Bluetooth Netzwerkeinwahl-Profil
-Comment[el]=Προφίλ δικτύου μέσω τηλεφωνικής κλήσης Bluetooth
-Comment[es]=Perfil de red telefónica Bluetooth
-Comment[et]=Bluetoothi sissehelistamisteenuse profiil
-Comment[fr]=Profil Réseau Bluetooth
-Comment[gl]=Perfil de Rede Dial-Up Bluetooth
-Comment[it]=Profilo di rete telefonica Bluetooth
-Comment[ja]=Bluetooth ダイアルアップ ネットワーク プロファイル (DUN)
-Comment[lt]=Bluetooth Dial-Up ryšio profilis
-Comment[nl]=Bluetooth inbelnetwerkprofiel
-Comment[pa]=ਬਲਿਊਟੁੱਥ ਡਾਇਲਅੱਪ ਨੈਟਵਰਕ ਪ੍ਰੋਫਾਇਲ
-Comment[pl]=Profil sieci wdzwanianej Bluetooth
-Comment[pt]=Perfil de Rede 'Dial-Up' Bluetooth
-Comment[pt_BR]=Perfil de Rede 'Dial-Up' Bluetooth
-Comment[sr]=Bluetooth профил повезивања преко телефона
-Comment[sr@Latn]=Bluetooth profil povezivanja preko telefona
-Comment[sv]=Blåtandsprofil för uppringt nätverk
-Comment[ta]=புலுடுத் தொலைபேசி முலம் இனைகும் முறை
-Comment[tr]=Bluetooth Çevirmeli Bağlantı Profili
-Comment[xx]=xxBluetooth Dial-Up Networking Profilexx
diff --git a/src/tdebluez-common/mimetypes/fax-profile.desktop b/src/tdebluez-common/mimetypes/fax-profile.desktop
index 1c4ff8c..e7347c2 100644
--- a/src/tdebluez-common/mimetypes/fax-profile.desktop
+++ b/src/tdebluez-common/mimetypes/fax-profile.desktop
@@ -1,31 +1,6 @@
[Desktop Entry]
-Encoding=UTF-8
+Comment=Bluetooth Fax Profile
+
Type=MimeType
MimeType=bluetooth/fax-profile
Icon=printer2
-Comment=Bluetooth Fax Profile
-Comment[ar]=مواصفات فاكس Bluetooth
-Comment[bg]=Профил за факс с Bluetooth
-Comment[bs]=Bluetooth fax profil
-Comment[ca]=Perfil de fax Bluetooth
-Comment[da]=Bluetooth fax-profil
-Comment[de]=Bluetooth Fax-Profil
-Comment[el]=Προφίλ Bluetooth Fax
-Comment[es]=Perfil de fax Bluetooth
-Comment[et]=Bluetoothi faksiprofiil
-Comment[fr]=Profil de Fax Bluetooth
-Comment[gl]=Perfil de Fax Bluetooth
-Comment[it]=Profilo Fax Bluetooth
-Comment[ja]=Bluetooth ファクス プロファイル (FAX)
-Comment[lt]=Bluetooth fakso profilis
-Comment[nl]=Bluetooth faxprofiel
-Comment[pa]=ਬਲਿਊਟੁੱਥ ਫੈਕਸ ਪ੍ਰੋਫਾਇਲ
-Comment[pl]=Profil Bluetooth faksowania
-Comment[pt]=Perfil de Fax Bluetooth
-Comment[pt_BR]=Perfil de Fax Bluetooth
-Comment[sr]=Bluetooth профил за факс
-Comment[sr@Latn]=Bluetooth profil za faks
-Comment[sv]=Blåtandsprofil för telefax
-Comment[ta]=புலுடுத் தொலை நகல் பக்கநோக்கு
-Comment[tr]=Bluetooth Faks Profili
-Comment[xx]=xxBluetooth Fax Profilexx
diff --git a/src/tdebluez-common/mimetypes/handsfree-profile.desktop b/src/tdebluez-common/mimetypes/handsfree-profile.desktop
index 90ecf70..b7ad677 100644
--- a/src/tdebluez-common/mimetypes/handsfree-profile.desktop
+++ b/src/tdebluez-common/mimetypes/handsfree-profile.desktop
@@ -1,29 +1,6 @@
[Desktop Entry]
-Encoding=UTF-8
+Comment=Bluetooth Hands-Free Profile
+
Type=MimeType
MimeType=bluetooth/handsfree-profile
Icon=kaddressbook
-Comment=Bluetooth Hands-Free Profile
-Comment[bg]=Профил Hands-Free за Bluetooth
-Comment[bs]=Bluetooth hands-free profil
-Comment[ca]=Perfil de mans lliures Bluetooth
-Comment[da]=Bluetooth Hands-Free-profil
-Comment[de]=Bluetooth Hands-Free-Profil
-Comment[el]=Προφίλ Bluetooth Hands-Free
-Comment[es]=Perfil manos libres Bluetooth
-Comment[et]=Bluetoothi handsfree profiil
-Comment[fr]=Profil Hands-Free Bluetooth
-Comment[gl]=Perfil de Maos-Libres Bluetooth
-Comment[it]=Profilo viva voce Bluetooth
-Comment[ja]=Bluetooth ハンズフリー プロファイル (HFP)
-Comment[lt]=Bluetooth laisvų rankų profilis
-Comment[nl]=Bluetooth Hands-Free-profiel
-Comment[pl]=Profil Bluetooth zestawu słuchawkowego
-Comment[pt]=Perfil Mãos-Livres Bluetooth
-Comment[pt_BR]=Perfil Mãos-Livres Bluetooth
-Comment[sr]=Bluetooth хендсфри профил
-Comment[sr@Latn]=Bluetooth hendsfri profil
-Comment[sv]=Blåtandsprofil för handsfree
-Comment[ta]=புலுடுத் கைஇல்லா பக்கநோக்கு
-Comment[tr]=Bluetooth Eller Serbest Profili
-Comment[xx]=xxBluetooth Hands-Free Profilexx
diff --git a/src/tdebluez-common/mimetypes/headset-profile.desktop b/src/tdebluez-common/mimetypes/headset-profile.desktop
index e5c38cf..4fe381c 100644
--- a/src/tdebluez-common/mimetypes/headset-profile.desktop
+++ b/src/tdebluez-common/mimetypes/headset-profile.desktop
@@ -1,30 +1,6 @@
[Desktop Entry]
-Encoding=UTF-8
+Comment=Bluetooth Headset Profile
+
Type=MimeType
MimeType=bluetooth/headset-profile
Icon=kaddressbook
-Comment=Bluetooth Headset Profile
-Comment[bg]=Профил Headset за Bluetooth
-Comment[bs]=Bluetooth headset profil
-Comment[ca]=Perfil d'auriculars Bluetooth
-Comment[da]=Bluetooth Headset-profil
-Comment[de]=Bluetooth Headset-Profil
-Comment[el]=Προφίλ Bluetooth ακουστικών
-Comment[es]=Perfil de auriculares Bluetooth
-Comment[et]=Bluetoothi peakomplekti profiil
-Comment[fr]=Profil Headset Bluetooth
-Comment[gl]=Perfil de Auricular Bluetooth
-Comment[it]=Profilo cuffie Bluetooth
-Comment[ja]=Bluetooth ヘッドセット プロファイル (HSP)
-Comment[lt]=Bluetooth ausinių profilis
-Comment[nl]=Bluetooth Headset-profiel
-Comment[pa]=ਬਲਿਊਟੁੱਥ ਹੈਡਸੈਟ ਪ੍ਰੋਫਾਇਲ
-Comment[pl]=Profil Bluetooth zestawu słuchawek z mikrofonem
-Comment[pt]=Perfil de Auricular Bluetooth
-Comment[pt_BR]=Perfil de Auricular Bluetooth
-Comment[sr]=Bluetooth профил за слушалице
-Comment[sr@Latn]=Bluetooth profil za slušalice
-Comment[sv]=Blåtandsprofil för headset
-Comment[ta]=புலுடுத் தலைஅமைப்பு பக்கநோக்கு
-Comment[tr]=Bluetooth Kulaklıklı Mikrofon Profili
-Comment[xx]=xxBluetooth Headset Profilexx
diff --git a/src/tdebluez-common/mimetypes/health-device-class.desktop b/src/tdebluez-common/mimetypes/health-device-class.desktop
index fbc682d..2b34153 100644
--- a/src/tdebluez-common/mimetypes/health-device-class.desktop
+++ b/src/tdebluez-common/mimetypes/health-device-class.desktop
@@ -1,9 +1,7 @@
[Desktop Entry]
-Encoding=UTF-8
+Comment=Health Bluetooth Device
+
Type=MimeType
MimeType=bluetooth/health-device-class
Icon=health
X-TDE-IsAlso=inode/directory
-Comment=Health Bluetooth Device
-Comment[bg]=Медицинско Bluetooth устройство
-Comment[xx]=xxHealth Bluetooth Devicexx
diff --git a/src/tdebluez-common/mimetypes/imaging-device-class.desktop b/src/tdebluez-common/mimetypes/imaging-device-class.desktop
index 24b5f48..e48ff79 100644
--- a/src/tdebluez-common/mimetypes/imaging-device-class.desktop
+++ b/src/tdebluez-common/mimetypes/imaging-device-class.desktop
@@ -1,30 +1,6 @@
[Desktop Entry]
-Encoding=UTF-8
+Comment=Imaging Bluetooth Device
+
Type=MimeType
MimeType=bluetooth/imaging-device-class
Icon=camera_unmount
-Comment=Imaging Bluetooth Device
-Comment[bg]=Bluetooth устройство за снимка
-Comment[bs]=Imaging Bluetooth uređaj
-Comment[ca]=Dispositiu Bluetooth d'imatges
-Comment[da]=Imaging Bluetooth-enhed
-Comment[de]=Imaging Bluetooth-Gerät
-Comment[el]=Συσκευή εικόνας Bluetooth
-Comment[es]=Dispositivo Bluetooth de imágenes
-Comment[et]=Bluetoothi pildiseade
-Comment[fr]=Périphérique d'imagerie Bluetooth
-Comment[gl]=Dispositivo Bluetooth con Imaxe
-Comment[it]=Dispositivo fotografico Bluetooth
-Comment[ja]=イメージング Bluetooth デバイス
-Comment[lt]=Bluetooth paveikslėlių įrenginys
-Comment[nl]=Bluetooth imaging-apparaat
-Comment[pa]=ਚਿੱਤਰ ਬਲਿਊਟੁੱਥ ਜੰਤਰ
-Comment[pl]=Urządzenie Bluetooth obrazowania
-Comment[pt]=Dispositivo Bluetooth com Imagem
-Comment[pt_BR]=Dispositivo Bluetooth com Imagem
-Comment[sr]=Bluetooth уређај за прављење слика
-Comment[sr@Latn]=Bluetooth uređaj za pravljenje slika
-Comment[sv]=Blåtandsenhet med kamera
-Comment[ta]=புலுடுத் நினைக்கும் கருவி
-Comment[tr]=Bluetooth Görüntü Aygıtı
-Comment[xx]=xxImaging Bluetooth Devicexx
diff --git a/src/tdebluez-common/mimetypes/keyboard-device-class.desktop b/src/tdebluez-common/mimetypes/keyboard-device-class.desktop
index 1445b7b..fccd791 100644
--- a/src/tdebluez-common/mimetypes/keyboard-device-class.desktop
+++ b/src/tdebluez-common/mimetypes/keyboard-device-class.desktop
@@ -1,29 +1,6 @@
[Desktop Entry]
-Encoding=UTF-8
+Comment=Peripheral Bluetooth Device
+
Type=MimeType
MimeType=bluetooth/keyboard-device-class
Icon=keyboard
-Comment=Peripheral Bluetooth Device
-Comment[bg]=Периферно Bluetooth устройство
-Comment[ca]=Dispositiu Bluetooth perifèric
-Comment[da]=Perifer Bluetooth-enhed
-Comment[de]=Peripheriegerät für Bluetooth
-Comment[el]=Περιφερειακή συσκευή Bluetooth
-Comment[es]=Dispositivo Bluetooth periférico
-Comment[et]=Väline Bluetoothi seade
-Comment[fr]=Périphérique Bluetooth
-Comment[gl]=Dispositivo Bluetooth Periférico
-Comment[it]=Dispositivo Bluetooth periferico
-Comment[ja]=周辺機器 Bluetooth デバイス
-Comment[lt]=Periferinis Bluetooth įrenginys
-Comment[nl]=Bluetooth randapparaat
-Comment[pa]=ਪੈਰਾਫੀਰਲ ਬਲਿਊਟੁੱਥ ਜੰਤਰ
-Comment[pl]=Urządzenie peryferyjne Bluetooth
-Comment[pt]=Dispositivo Bluetooth Periférico
-Comment[pt_BR]=Dispositivo Bluetooth Periférico
-Comment[sr]=Периферијски bluetooth уређај
-Comment[sr@Latn]=Periferijski bluetooth uređaj
-Comment[sv]=Extern Blåtandsenhet
-Comment[ta]=புற புலுடுத் கருவி
-Comment[tr]=Çevresel Bluetooth Aygıtı
-Comment[xx]=xxPeripheral Bluetooth Devicexx
diff --git a/src/tdebluez-common/mimetypes/lan-device-class.desktop b/src/tdebluez-common/mimetypes/lan-device-class.desktop
index 5035fd7..dcd8631 100644
--- a/src/tdebluez-common/mimetypes/lan-device-class.desktop
+++ b/src/tdebluez-common/mimetypes/lan-device-class.desktop
@@ -1,30 +1,6 @@
[Desktop Entry]
-Encoding=UTF-8
+Comment=LAN/Networking Bluetooth Device
+
Type=MimeType
MimeType=bluetooth/lan-device-class
Icon=nfs_unmount
-Comment=LAN/Networking Bluetooth Device
-Comment[bg]=Мрежово/LAN Bluetooth устройство
-Comment[ca]=Dispositiu Bluetooth de xarxa
-Comment[da]=LAN/Netværk Bluetooth-enhed
-Comment[de]=LAN/Netwerk Bluetooth-Gerät
-Comment[el]=Δικτυακή συσκευή Bluetooth
-Comment[es]=Dispositivo Bluetooth de redes
-Comment[et]=Kohtvõrgu/interneti Bluetoothi seade
-Comment[fr]=Périphérique LAN/Réseau Bluetooth
-Comment[gl]=Dispositivo de Rede Bluetooth
-Comment[it]=Dispositivo Bluetooth di LAN/Rete
-Comment[ja]=LAN/ネットワーク Bluetooth デバイス
-Comment[lt]=Bluetooth LAN/tinklo įrenginys
-Comment[nl]=Bluetooth LAN-/netwerk-apparaat
-Comment[pa]=LAN/ਨੈਟਵਰਕ ਬਲਿਊਟੁੱਥ ਜੰਤਰ
-Comment[pl]=Urządzenie Bluetooth LAN/sieciowe
-Comment[pt]=Dispositivo de Rede Bluetooth
-Comment[pt_BR]=Dispositivo de Rede Bluetooth
-Comment[sr]=LAN/мрежни bluetooth уређај
-Comment[sr@Latn]=LAN/mrežni bluetooth uređaj
-Comment[sv]=Blåtandsenhet för lokalt nätverk
-Comment[ta]=LAN/புலுடுத் வலை இனைப்பு கருவி
-Comment[tg]=Дастгоҳи шабака/LAN Bluetooth
-Comment[tr]=LAN/Ağ Bluetooth Aygıtı
-Comment[xx]=xxLAN/Networking Bluetooth Devicexx
diff --git a/src/tdebluez-common/mimetypes/misc-device-class.desktop b/src/tdebluez-common/mimetypes/misc-device-class.desktop
index 67a510b..b306ecd 100644
--- a/src/tdebluez-common/mimetypes/misc-device-class.desktop
+++ b/src/tdebluez-common/mimetypes/misc-device-class.desktop
@@ -1,30 +1,7 @@
[Desktop Entry]
-Encoding=UTF-8
+Comment=Miscellaneous Bluetooth Device
+
Type=MimeType
MimeType=bluetooth/misc-device-class
Icon=tdebluez
X-TDE-IsAlso=inode/directory
-Comment=Miscellaneous Bluetooth Device
-Comment[bg]=Разни Bluetooth устройства
-Comment[ca]=Dispositiu Bluetooth divers
-Comment[da]=Diverse Bluetooth-enheder
-Comment[de]=Vielseitiges Bluetooth-Gerät
-Comment[el]=Συσκευή Bluetooth άλλης κατηγορίας
-Comment[es]=Dispositivo Bluetooth diverso
-Comment[et]=Mitmesugused Bluetoothi seadmed
-Comment[fr]=Périphérique Bluetooth divers
-Comment[gl]=Dispositivo Bluetooth
-Comment[it]=Dispositivo Bluetooth vario
-Comment[ja]=その他の Bluetooth デバイス
-Comment[lt]=Kitas Bluetooth įrenginys
-Comment[nl]=Ander Bluetooth-apparaat
-Comment[pa]=ਫੁਟਕਲ ਬਲਿਊਟੁੱਥ ਜੰਤਰ
-Comment[pl]=Inne urządzenie Bluetooth
-Comment[pt]=Dispositivo Bluetooth Variado
-Comment[pt_BR]=Dispositivo Bluetooth Variado
-Comment[sr]=Неодређени bluetooth уређај
-Comment[sr@Latn]=Neodređeni bluetooth uređaj
-Comment[sv]=Annan Blåtandsenhet
-Comment[ta]=இதர புலுடுத் கருவி
-Comment[tr]=Çeşitli Bluetooth Aygıtları
-Comment[xx]=xxMiscellaneous Bluetooth Devicexx
diff --git a/src/tdebluez-common/mimetypes/mouse-device-class.desktop b/src/tdebluez-common/mimetypes/mouse-device-class.desktop
index 00a5880..c1a214c 100644
--- a/src/tdebluez-common/mimetypes/mouse-device-class.desktop
+++ b/src/tdebluez-common/mimetypes/mouse-device-class.desktop
@@ -1,29 +1,6 @@
[Desktop Entry]
-Encoding=UTF-8
+Comment=Peripheral Bluetooth Device
+
Type=MimeType
MimeType=bluetooth/mouse-device-class
Icon=mouse
-Comment=Peripheral Bluetooth Device
-Comment[bg]=Периферно Bluetooth устройство
-Comment[ca]=Dispositiu Bluetooth perifèric
-Comment[da]=Perifer Bluetooth-enhed
-Comment[de]=Peripheriegerät für Bluetooth
-Comment[el]=Περιφερειακή συσκευή Bluetooth
-Comment[es]=Dispositivo Bluetooth periférico
-Comment[et]=Väline Bluetoothi seade
-Comment[fr]=Périphérique Bluetooth
-Comment[gl]=Dispositivo Bluetooth Periférico
-Comment[it]=Dispositivo Bluetooth periferico
-Comment[ja]=周辺機器 Bluetooth デバイス
-Comment[lt]=Periferinis Bluetooth įrenginys
-Comment[nl]=Bluetooth randapparaat
-Comment[pa]=ਪੈਰਾਫੀਰਲ ਬਲਿਊਟੁੱਥ ਜੰਤਰ
-Comment[pl]=Urządzenie peryferyjne Bluetooth
-Comment[pt]=Dispositivo Bluetooth Periférico
-Comment[pt_BR]=Dispositivo Bluetooth Periférico
-Comment[sr]=Периферијски bluetooth уређај
-Comment[sr@Latn]=Periferijski bluetooth uređaj
-Comment[sv]=Extern Blåtandsenhet
-Comment[ta]=புற புலுடுத் கருவி
-Comment[tr]=Çevresel Bluetooth Aygıtı
-Comment[xx]=xxPeripheral Bluetooth Devicexx
diff --git a/src/tdebluez-common/mimetypes/obex-ftp-profile.desktop b/src/tdebluez-common/mimetypes/obex-ftp-profile.desktop
index a16bcbd..b93be50 100644
--- a/src/tdebluez-common/mimetypes/obex-ftp-profile.desktop
+++ b/src/tdebluez-common/mimetypes/obex-ftp-profile.desktop
@@ -1,29 +1,6 @@
[Desktop Entry]
-Encoding=UTF-8
+Comment=OBEX File Transfer Profile
+
Type=MimeType
MimeType=bluetooth/obex-ftp-profile
Icon=nfs_unmount
-Comment=OBEX File Transfer Profile
-Comment[bg]=Профил за пренос на OBEX файл
-Comment[ca]=Perfil de transferència de fitxers OBEX
-Comment[da]=OBEX filoverførselsprofil
-Comment[de]=OBEX Dateitransferprotokoll
-Comment[el]=Προφίλ μεταφοράς αρχείων OBEX
-Comment[es]=Perfil de transferencia de archivos OBEX
-Comment[et]=OBEX failiedastuse profiil
-Comment[fr]=Profil de transfert de fichiers via OBEX
-Comment[gl]=Perfil de Transferéncia de Ficheiros OBEX
-Comment[it]=Profilo di trasferimento file OBEX
-Comment[ja]=OBEX ファイル転送プロファイル (FTP)
-Comment[lt]=OBEX bylų persiuntimo profilis
-Comment[nl]=OBEX bestandsoverdrachtprofiel
-Comment[pa]=OBEX ਫਾਇਲ ਸੰਚਾਰ ਪ੍ਰੋਫਾਇਲ
-Comment[pl]=Profil transferu plików OBEX
-Comment[pt]=Perfil de Transferência de Ficheiros OBEX
-Comment[pt_BR]=Perfil de Transferência de Ficheiros OBEX
-Comment[sr]=Профил за OBEX пренос фајлова
-Comment[sr@Latn]=Profil za OBEX prenos fajlova
-Comment[sv]=OBEX-filöverföringsprofil
-Comment[ta]=OBEX கோப்பு மாற்று பக்கநோக்கு
-Comment[tr]=OBEX Dosya Transfer Profili
-Comment[xx]=xxOBEX File Transfer Profilexx
diff --git a/src/tdebluez-common/mimetypes/obex-objectpush-profile.desktop b/src/tdebluez-common/mimetypes/obex-objectpush-profile.desktop
index d1b0ce6..64e1cfc 100644
--- a/src/tdebluez-common/mimetypes/obex-objectpush-profile.desktop
+++ b/src/tdebluez-common/mimetypes/obex-objectpush-profile.desktop
@@ -1,32 +1,9 @@
[Desktop Entry]
-Encoding=UTF-8
Comment=OBEX Object Push Profile
-Comment[bg]=Профил OBEX Object Push
-Comment[ca]=Perfil d'enviament d'objectes OBEX
-Comment[da]=OBEX objekt-skubbeprofil
-Comment[de]=OBEX Object-Push-Profil
-Comment[el]=Προφίλ αποστολής αντικειμένων OBEX
-Comment[es]=Perfil de envío de objetos OBEX
-Comment[et]=OBEX objekti saatmise profiil
-Comment[fr]=Profil OBEX Object Push
-Comment[gl]=Perfil de Envio de Obxectos OBEX
-Comment[it]=Profilo di Oggetto Push OBEX
-Comment[ja]=OBEX オブジェクトプッシュ プロファイル (OPP)
-Comment[lt]=OBEX persiuntimo profilis
-Comment[nl]=OBEX Object Push-profiel
-Comment[pa]=OBEX Object Push ਪ੍ਰੋਫਾਇਲ
-Comment[pl]=Profil OBEX Object Push
-Comment[pt]=Perfil de Envio de Objectos OBEX
-Comment[pt_BR]=Perfil de Envio de Objectos OBEX
-Comment[sr]=Профил за OBEX гурање објеката
-Comment[sr@Latn]=Profil za OBEX guranje objekata
-Comment[sv]=OBEX-objektsändingsprofil
-Comment[ta]=OBEX பொருள் விளக்கக்குறிப்பு
-Comment[tr]=OBEX Nesne Ekleme Profili
-Comment[xx]=xxOBEX Object Push Profilexx
-Icon=mail_send
+
Type=MimeType
MimeType=bluetooth/obex-object-push-profile
+Icon=mail_send
Patterns=
NoDisplay=false
X-TDE-AutoEmbed=true
diff --git a/src/tdebluez-common/mimetypes/peripheral-device-class.desktop b/src/tdebluez-common/mimetypes/peripheral-device-class.desktop
index 55eaa3f..3c2d57e 100644
--- a/src/tdebluez-common/mimetypes/peripheral-device-class.desktop
+++ b/src/tdebluez-common/mimetypes/peripheral-device-class.desktop
@@ -1,29 +1,6 @@
[Desktop Entry]
-Encoding=UTF-8
+Comment=Peripheral Bluetooth Device
+
Type=MimeType
MimeType=bluetooth/peripheral-device-class
Icon=joystick
-Comment=Peripheral Bluetooth Device
-Comment[bg]=Периферно Bluetooth устройство
-Comment[ca]=Dispositiu Bluetooth perifèric
-Comment[da]=Perifer Bluetooth-enhed
-Comment[de]=Peripheriegerät für Bluetooth
-Comment[el]=Περιφερειακή συσκευή Bluetooth
-Comment[es]=Dispositivo Bluetooth periférico
-Comment[et]=Väline Bluetoothi seade
-Comment[fr]=Périphérique Bluetooth
-Comment[gl]=Dispositivo Bluetooth Periférico
-Comment[it]=Dispositivo Bluetooth periferico
-Comment[ja]=周辺機器 Bluetooth デバイス
-Comment[lt]=Periferinis Bluetooth įrenginys
-Comment[nl]=Bluetooth randapparaat
-Comment[pa]=ਪੈਰਾਫੀਰਲ ਬਲਿਊਟੁੱਥ ਜੰਤਰ
-Comment[pl]=Urządzenie peryferyjne Bluetooth
-Comment[pt]=Dispositivo Bluetooth Periférico
-Comment[pt_BR]=Dispositivo Bluetooth Periférico
-Comment[sr]=Периферијски bluetooth уређај
-Comment[sr@Latn]=Periferijski bluetooth uređaj
-Comment[sv]=Extern Blåtandsenhet
-Comment[ta]=புற புலுடுத் கருவி
-Comment[tr]=Çevresel Bluetooth Aygıtı
-Comment[xx]=xxPeripheral Bluetooth Devicexx
diff --git a/src/tdebluez-common/mimetypes/phone-device-class.desktop b/src/tdebluez-common/mimetypes/phone-device-class.desktop
index b1b28f8..db12871 100644
--- a/src/tdebluez-common/mimetypes/phone-device-class.desktop
+++ b/src/tdebluez-common/mimetypes/phone-device-class.desktop
@@ -1,32 +1,7 @@
[Desktop Entry]
-Encoding=UTF-8
+Comment=Phone Bluetooth Device
+
Type=MimeType
MimeType=bluetooth/phone-device-class
Icon=kaddressbook
X-TDE-IsAlso=inode/directory
-Comment=Phone Bluetooth Device
-Comment[ar]=جهاز هاتف Bluetooth
-Comment[bg]=Телефонно Bluetooth устройство
-Comment[ca]=Dispositiu Bluetooth telefònic
-Comment[da]=Telefon Bluetooth-enhed
-Comment[de]=Bluetooth-Gerät für Telefonie
-Comment[el]=Τηλεφωνική συσκευή Bluetooth
-Comment[es]=Dispositivo bluetooth telefónico
-Comment[et]=Telefoni Bluetoothi seade
-Comment[fr]=Téléphone Bluetooth
-Comment[gl]=Teléfone con Bluetooth
-Comment[it]=Dispositivo Bluetooth telefonico
-Comment[ja]=電話 Bluetooth デバイス
-Comment[lt]=Bluetooth telefono įrenginys
-Comment[nl]=Bluetooth telefoon
-Comment[pa]=ਫੋਨ ਬਲਿਊਟੁੱਥ ਜੰਤਰ
-Comment[pl]=Urządzenie Bluetooth - telefon
-Comment[pt]=Dispositivo Bluetooth Telefone
-Comment[pt_BR]=Dispositivo Bluetooth Telefone
-Comment[sr]=Телефонски bluetooth уређај
-Comment[sr@Latn]=Telefonski bluetooth uređaj
-Comment[sv]=Blåtandsenhet i telefon
-Comment[ta]=தொலைபெசி புலுடுத் கருவி
-Comment[tg]=Дастгоҳи телефони Bluetooth
-Comment[tr]=Bluetooth Telefon Aygıtı
-Comment[xx]=xxPhone Bluetooth Devicexx
diff --git a/src/tdebluez-common/mimetypes/serial-port-profile.desktop b/src/tdebluez-common/mimetypes/serial-port-profile.desktop
index 439de4a..185c043 100644
--- a/src/tdebluez-common/mimetypes/serial-port-profile.desktop
+++ b/src/tdebluez-common/mimetypes/serial-port-profile.desktop
@@ -1,29 +1,6 @@
[Desktop Entry]
-Encoding=UTF-8
+Comment=Bluetooth Serial Port Profile
+
Type=MimeType
MimeType=bluetooth/serial-port-profile
Icon=input_devices_settings
-Comment=Bluetooth Serial Port Profile
-Comment[bg]=Профил за сериен порт за Bluetooth
-Comment[ca]=Perfil de port sèrie Bluetooth
-Comment[da]=Bluetooth seriel port profil
-Comment[de]=Serielles Bluetooth-Anschlussprofil
-Comment[el]=Προφίλ σειριακής θύρας Bluetooth
-Comment[es]=Perfil Bluetooth de puerto serie
-Comment[et]=Bluetoothi jadapordi profiil
-Comment[fr]=Profil de port série Bluetooth
-Comment[gl]=Perfil Bluetooth de Porto Série
-Comment[it]=Profilo di porta seriale Bluetooth
-Comment[ja]=Bluetooth シリアルポート プロファイル (SPP)
-Comment[lt]=Bluetooth nuoseklaus prievado profilis
-Comment[nl]=Bluetooth seriële-poort-profiel
-Comment[pa]=ਬਲਿਊਟੁੱਥ ਸੀਰੀਅਲ ਪੋਰਟ ਪ੍ਰੋਫਾਇਲ
-Comment[pl]=Profil Bluetooth portu szeregowego
-Comment[pt]=Perfil Bluetooth de Portal Série
-Comment[pt_BR]=Perfil Bluetooth de Portal Série
-Comment[sr]=Bluetooth профил серијског порта
-Comment[sr@Latn]=Bluetooth profil serijskog porta
-Comment[sv]=Blåtandsprofil för serieport
-Comment[ta]=புலுடுத் தொடர் துரை பக்கநோக்கு
-Comment[tr]=Bluetooth Seri Port Profili
-Comment[xx]=xxBluetooth Serial Port Profilexx
diff --git a/src/tdebluez-common/mimetypes/synchronization-profile.desktop b/src/tdebluez-common/mimetypes/synchronization-profile.desktop
index 50efd3c..376eb2f 100644
--- a/src/tdebluez-common/mimetypes/synchronization-profile.desktop
+++ b/src/tdebluez-common/mimetypes/synchronization-profile.desktop
@@ -1,31 +1,6 @@
[Desktop Entry]
-Encoding=UTF-8
+Comment=Bluetooth Synchronization Profile
+
Type=MimeType
MimeType=bluetooth/synchronization-profile
Icon=pda_blue
-Comment=Bluetooth Synchronization Profile
-Comment[ar]=مواصفات مقارنة التزامن Bluetooth
-Comment[bg]=Профил за синхронизиране на Bluetooth
-Comment[ca]=Perfil de sincronització Bluetooth
-Comment[da]=Bluetooth synkroniseringsprofil
-Comment[de]=Bluetooth Synchronisationsprofil
-Comment[el]=Προφίλ συγχρονισμού Bluetooth
-Comment[en_GB]=Bluetooth Synchronisation Profile
-Comment[es]=Perfil de sincronización Bluetooth
-Comment[et]=Bluetoothi sünkroprofiil
-Comment[fr]=Profil de Synchronisation Bluetooth
-Comment[gl]=Perfil de Sincronizazón Bluetooth
-Comment[it]=Profilo di sincronizzazione Bluetooth
-Comment[ja]=Bluetooth 同期プロファイル (SYNC)
-Comment[lt]=Bluetooth sinchronizacijos profilis
-Comment[nl]=Bluetooth synchronisatieprofiel
-Comment[pa]=ਬਲਿਊਟੁੱਥ ਸਮਕਾਲੀ ਪ੍ਰੋਫਾਇਲ
-Comment[pl]=Profil Bluetooth synchronizacji
-Comment[pt]=Perfil de Sincronização Bluetooth
-Comment[pt_BR]=Perfil de Sincronização Bluetooth
-Comment[sr]=Bluetooth профил синхронизације
-Comment[sr@Latn]=Bluetooth profil sinhronizacije
-Comment[sv]=Blåtandsprofil för synkronisering
-Comment[ta]=புலுடுத் ஒத்திசை பக்கநோக்கு
-Comment[tr]=Bluetooth Eşzamanlama Profili
-Comment[xx]=xxBluetooth Synchronization Profilexx
diff --git a/src/tdebluez-common/mimetypes/toy-device-class.desktop b/src/tdebluez-common/mimetypes/toy-device-class.desktop
index b2b40d3..7880d9e 100644
--- a/src/tdebluez-common/mimetypes/toy-device-class.desktop
+++ b/src/tdebluez-common/mimetypes/toy-device-class.desktop
@@ -1,9 +1,7 @@
[Desktop Entry]
-Encoding=UTF-8
+Comment=Toy Bluetooth Device
+
Type=MimeType
MimeType=bluetooth/toy-device-class
Icon=package_toys
X-TDE-IsAlso=inode/directory
-Comment=Toy Bluetooth Device
-Comment[bg]=Играчка Bluetooth устройство
-Comment[xx]=xxToy Bluetooth Devicexx
diff --git a/src/tdebluez-common/mimetypes/unknown-device-class.desktop b/src/tdebluez-common/mimetypes/unknown-device-class.desktop
index 5a05925..5518419 100644
--- a/src/tdebluez-common/mimetypes/unknown-device-class.desktop
+++ b/src/tdebluez-common/mimetypes/unknown-device-class.desktop
@@ -1,30 +1,6 @@
[Desktop Entry]
-Encoding=UTF-8
+Comment=Unknown Bluetooth Device Class
+
Type=MimeType
MimeType=bluetooth/unknown-device-class
Icon=tdebluez
-Comment=Unknown Bluetooth Device Class
-Comment[ar]=فئة جهاز Bluetooth غير معروف
-Comment[bg]=Неизвестен клас на Bluetooth устройство
-Comment[ca]=Classe de dispositiu Bluetooth desconegut
-Comment[da]=Ukendt Bluetooth enhedsklasse
-Comment[de]=Unbekannte Bluetooth-Geräteklasse
-Comment[el]=Άγνωστη κλάση συσκευής Bluetooth
-Comment[es]=Clase de dispositivo Bluetooth desconocida
-Comment[et]=Tundmatu Bluetoothi seadme klass
-Comment[fr]=Classe du périphérique Bluetooth inconnue
-Comment[gl]=Clase de dispositivo Bluetooth descoñecida
-Comment[it]=Classe di dispositivo Bluetooth ignota
-Comment[ja]=未知の Bluetooth デバイスクラス
-Comment[lt]=Nežinoma Bluetooth įrenginio klasė
-Comment[nl]=Onbekende Bluetooth apparaatklasse
-Comment[pa]=ਅਣਜਾਣ ਬਲਿਊਟੁੱਥ ਜੰਤਰ ਕਲਾਸ
-Comment[pl]=Nieznana klasa urządzenia Bluetooth
-Comment[pt]=Classe de dispositivo Bluetooth desconhecida
-Comment[pt_BR]=Classe de dispositivo Bluetooth desconhecida
-Comment[sr]=Непозната класа bluetooth уређаја
-Comment[sr@Latn]=Nepoznata klasa bluetooth uređaja
-Comment[sv]=Okänd klass av Blåtandsenhet
-Comment[ta]=தேரியாத புலுடுத் கருவி வகுப்புகள்
-Comment[tr]=Bilinmeyen Bluetooth Aygıt Sınıfı
-Comment[xx]=xxUnknown Bluetooth Device Classxx
diff --git a/src/tdebluez-common/mimetypes/unknown-profile.desktop b/src/tdebluez-common/mimetypes/unknown-profile.desktop
index 926c29e..768c1a9 100644
--- a/src/tdebluez-common/mimetypes/unknown-profile.desktop
+++ b/src/tdebluez-common/mimetypes/unknown-profile.desktop
@@ -1,33 +1,7 @@
[Desktop Entry]
-Encoding=UTF-8
Comment=Unknown Bluetooth Profile
-Comment[ar]=مواصفات Bluetooth غير معروفة
-Comment[bg]=Неизвестен профил на Bluetooth
-Comment[br]=Profil Bluetooth dianav
-Comment[ca]=Perfil Bluetooth desconegut
-Comment[da]=Ukendt Bluetooth-profil
-Comment[de]=Unkekanntes Bluetooth Profil
-Comment[el]=Άγνωστο προφίλ Bluetooth
-Comment[es]=Perfil Bluetooth desconocido
-Comment[et]=Tundmatu Bluetoothi profiil
-Comment[fr]=Profil Bluetooth inconnu
-Comment[gl]=Perfil Bluetooth Descoñecido
-Comment[it]=Profilo Bluetooth ignoto
-Comment[ja]=未知の Bluetooth プロファイル
-Comment[lt]=Nežinomas Bluetooth profilis
-Comment[nl]=Onbekend Bluetooth-profiel
-Comment[pa]=ਅਣਜਾਣ ਬਲਿਊਟੁੱਥ ਪ੍ਰੋਫਾਇਲ
-Comment[pl]=Nieznany profil Bluetooth
-Comment[pt]=Perfil Bluetooth Desconhecido
-Comment[pt_BR]=Perfil Bluetooth Desconhecido
-Comment[sr]=Непознати bluetooth профил
-Comment[sr@Latn]=Nepoznati bluetooth profil
-Comment[sv]=Okänd Blåtandsprofil
-Comment[ta]=தெரியாத ப்ளூ டூத் விளக்கக்குறிப்பு
-Comment[tg]=Профили Bluetooth номуайян
-Comment[tr]=Bilinmeyen Bluetooth Profili
-Comment[xx]=xxUnknown Bluetooth Profilexx
-Icon=misc
+
Type=MimeType
MimeType=bluetooth/unknown-profile
+Icon=misc
Patterns=
diff --git a/src/tdebluez-common/mimetypes/wearable-device-class.desktop b/src/tdebluez-common/mimetypes/wearable-device-class.desktop
index fe1f182..e7a363c 100644
--- a/src/tdebluez-common/mimetypes/wearable-device-class.desktop
+++ b/src/tdebluez-common/mimetypes/wearable-device-class.desktop
@@ -1,9 +1,7 @@
[Desktop Entry]
-Encoding=UTF-8
+Comment=Wearable Bluetooth Device
+
Type=MimeType
MimeType=bluetooth/wearable-device-class
Icon=kaddressbook
X-TDE-IsAlso=inode/directory
-Comment=Wearable Bluetooth Device
-Comment[bg]=Преносимо Bluetooth устройство
-Comment[xx]=xxWearable Bluetooth Devicexx
diff --git a/src/tdebluez-common/tde-settings-network-bluetooth.directory b/src/tdebluez-common/tde-settings-network-bluetooth.directory
index 54636e7..0df174e 100644
--- a/src/tdebluez-common/tde-settings-network-bluetooth.directory
+++ b/src/tdebluez-common/tde-settings-network-bluetooth.directory
@@ -1,7 +1,3 @@
[Desktop Entry]
-Encoding=UTF-8
Name=Bluetooth
-Name[pa]=ਬਲਿਊਟੁੱਥ
-Name[sv]=Blåtand
-Name[xx]=xxBluetoothxx
Icon=tdebluez